Changeset f215bb5 in mainline for uspace/lib/posix/ctype.c


Ignore:
Timestamp:
2011-07-27T21:24:32Z (13 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fd4b636
Parents:
77c6698
Message:

Various little changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/ctype.c

    r77c6698 rf215bb5  
    9494int posix_isprint(int c)
    9595{
    96         return posix_isacsii(c) && !posix_iscntrl(c);
     96        return posix_isascii(c) && !posix_iscntrl(c);
    9797}
    9898
Note: See TracChangeset for help on using the changeset viewer.