Changeset 77c6698 in mainline
- Timestamp:
- 2011-07-26T22:20:33Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f215bb5
- Parents:
- 1e591c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/ctype.c
r1e591c8 r77c6698 94 94 int posix_isprint(int c) 95 95 { 96 return !posix_iscntrl(c);96 return posix_isacsii(c) && !posix_iscntrl(c); 97 97 } 98 98
Note:
See TracChangeset
for help on using the changeset viewer.