Changeset 0c16ab1 in mainline
- Timestamp:
- 2011-07-19T00:54:55Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fc3680e
- Parents:
- df874db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/ctype.c
rdf874db r0c16ab1 105 105 int posix_ispunct(int c) 106 106 { 107 return !isspace(c) && !isalnum(c) ;107 return !isspace(c) && !isalnum(c) && posix_isprint(c); 108 108 } 109 109
Note:
See TracChangeset
for help on using the changeset viewer.