Changeset d0b72c4 in mainline


Ignore:
Timestamp:
2007-09-15T13:50:25Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2b20947
Parents:
4ec91b2f
Message:

Implementation of isalnum().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/include/ctype.h

    r4ec91b2f rd0b72c4  
    4646}
    4747
     48static inline int isalnum(int c)
     49{
     50        return (isalpha(c) || isdigit(c));
     51}
     52
    4853static inline int isspace(int c)
    4954{
    50         switch(c) {
     55        switch (c) {
    5156        case ' ':
    5257        case '\n':
Note: See TracChangeset for help on using the changeset viewer.