Changeset dbbbe75b in mainline for uspace/lib/posix/source/fnmatch.c


Ignore:
Timestamp:
2018-01-15T21:54:21Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8348846
Parents:
c718bda
Message:

Add missing standard functions to <ctype.h>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/fnmatch.c

    rc718bda rdbbbe75b  
    183183        { "alnum", isalnum },
    184184        { "alpha", isalpha },
    185         { "blank", posix_isblank },
    186         { "cntrl", posix_iscntrl },
     185        { "blank", isblank },
     186        { "cntrl", iscntrl },
    187187        { "digit", isdigit },
    188         { "graph", posix_isgraph },
     188        { "graph", isgraph },
    189189        { "lower", islower },
    190         { "print", posix_isprint },
    191         { "punct", posix_ispunct },
     190        { "print", isprint },
     191        { "punct", ispunct },
    192192        { "space", isspace },
    193193        { "upper", isupper },
    194         { "xdigit", posix_isxdigit }
     194        { "xdigit", isxdigit }
    195195};
    196196
Note: See TracChangeset for help on using the changeset viewer.