Changeset d0b72c4 in mainline
- Timestamp:
- 2007-09-15T13:50:25Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2b20947
- Parents:
- 4ec91b2f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/ctype.h
r4ec91b2f rd0b72c4 46 46 } 47 47 48 static inline int isalnum(int c) 49 { 50 return (isalpha(c) || isdigit(c)); 51 } 52 48 53 static inline int isspace(int c) 49 54 { 50 switch (c) {55 switch (c) { 51 56 case ' ': 52 57 case '\n':
Note:
See TracChangeset
for help on using the changeset viewer.