Changeset d630139 in mainline for uspace/libc/include/ctype.h
- Timestamp:
- 2007-02-12T19:13:55Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f6a3376
- Parents:
- bea09de6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/include/ctype.h
rbea09de6 rd630139 44 44 { 45 45 switch(c) { 46 47 48 49 50 51 52 53 54 55 46 case ' ': 47 case '\n': 48 case '\t': 49 case '\f': 50 case '\r': 51 case '\v': 52 return 1; 53 break; 54 default: 55 return 0; 56 56 } 57 57 }
Note:
See TracChangeset
for help on using the changeset viewer.