Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/ctype.h

    r491e1ee r21abb9a  
    4040
    4141/* Classification of Characters */
    42 extern int posix_isxdigit(int ch);
     42extern int posix_isxdigit(int c);
     43extern int posix_isblank(int c);
     44extern int posix_iscntrl(int c);
     45extern int posix_isgraph(int c);
     46extern int posix_isprint(int c);
     47extern int posix_ispunct(int c);
    4348
    4449#ifndef LIBPOSIX_INTERNAL
    4550        #define isxdigit posix_isxdigit
     51        #define isblank posix_isblank
     52        #define iscntrl posix_iscntrl
     53        #define isgraph posix_isgraph
     54        #define isprint posix_isprint
     55        #define ispunct posix_ispunct
    4656#endif
    4757
Note: See TracChangeset for help on using the changeset viewer.