Changeset 0e7c3d9 in mainline for uspace/lib/c/generic/str.c
- Timestamp:
- 2017-05-15T19:25:23Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ee7e6a
- Parents:
- fec333b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/str.c
rfec333b3 r0e7c3d9 1239 1239 1240 1240 return true; 1241 }1242 1243 int stricmp(const char *a, const char *b)1244 {1245 int c = 0;1246 1247 while (a[c] && b[c] && (!(tolower(a[c]) - tolower(b[c]))))1248 c++;1249 1250 return (tolower(a[c]) - tolower(b[c]));1251 1241 } 1252 1242
Note:
See TracChangeset
for help on using the changeset viewer.