Changeset 0c16ab1 in mainline for uspace/lib/posix/ctype.c


Ignore:
Timestamp:
2011-07-19T00:54:55Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fc3680e
Parents:
df874db
Message:

Bugfix in ispunct().

File:
1 edited

Legend:

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

    rdf874db r0c16ab1  
    105105int posix_ispunct(int c)
    106106{
    107         return !isspace(c) && !isalnum(c);
     107        return !isspace(c) && !isalnum(c) && posix_isprint(c);
    108108}
    109109
Note: See TracChangeset for help on using the changeset viewer.