Changeset 4ec91b2f in mainline
- Timestamp:
- 2007-09-15T13:44:56Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d0b72c4
- Parents:
- d79dcdb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/ctype.h
rd79dcdb r4ec91b2f 36 36 #define LIBC_CTYPE_H_ 37 37 38 static inline int isalpha(int c) 39 { 40 return (((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z'))); 41 } 42 38 43 static inline int isdigit(int c) 39 44 { 40 return ((c >= '0' )&&(c <= '9'));45 return ((c >= '0') && (c <= '9')); 41 46 } 42 47
Note:
See TracChangeset
for help on using the changeset viewer.