Changeset d2093d6 in mainline
- Timestamp:
- 2008-11-23T16:21:49Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0fdd6bb
- Parents:
- 7782030
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/ctype.h
r7782030 rd2093d6 85 85 } 86 86 87 static inline int toupper(int c) 88 { 89 if (islower(c)) 90 return (c - ('a' - 'A' > 0 ? 'a' - 'A' : 'A' - 'a')); 91 else 92 return c; 93 } 94 87 95 #endif 88 96
Note:
See TracChangeset
for help on using the changeset viewer.