Changeset 021c508 in mainline for uspace/lib/posix/ctype.h
- Timestamp:
- 2011-06-24T02:17:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d185132
- Parents:
- 4d4988e (diff), 67c64b9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/ctype.h
r4d4988e r021c508 40 40 41 41 /* Classification of Characters */ 42 extern int posix_isxdigit(int ch); 42 extern int posix_isxdigit(int c); 43 extern int posix_isblank(int c); 44 extern int posix_iscntrl(int c); 45 extern int posix_isgraph(int c); 46 extern int posix_isprint(int c); 47 extern int posix_ispunct(int c); 43 48 44 49 #ifndef LIBPOSIX_INTERNAL 45 50 #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 46 56 #endif 47 57
Note:
See TracChangeset
for help on using the changeset viewer.