Changeset b9e7944 in mainline
- Timestamp:
- 2008-11-23T18:47:02Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 08b6836
- Parents:
- a5da446
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/ctype.h
ra5da446 rb9e7944 80 80 { 81 81 if (isupper(c)) 82 return (c + ('a' - 'A' > 0 ? 'a' - 'A' : 'A' - 'a'));82 return (c + ('a' - 'A')); 83 83 else 84 84 return c; … … 88 88 { 89 89 if (islower(c)) 90 return (c - ('a' - 'A' > 0 ? 'a' - 'A' :'A' - 'a'));90 return (c + ('A' - 'a')); 91 91 else 92 92 return c;
Note:
See TracChangeset
for help on using the changeset viewer.