Changeset 2dd7288 in mainline for uspace/lib/libc/generic/string.c
- Timestamp:
- 2008-08-10T09:11:44Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2e9c47
- Parents:
- 5749372
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/string.c
r5749372 r2dd7288 147 147 148 148 return (a[c] - b[c]); 149 150 149 } 151 150 … … 159 158 return ( c < n ? a[c] - b[c] : 0); 160 159 160 } 161 162 int stricmp(const char *a, const char *b) 163 { 164 int c = 0; 165 166 while (a[c] && b[c] && (!(tolower(a[c]) - tolower(b[c])))) 167 c++; 168 169 return (tolower(a[c]) - tolower(b[c])); 161 170 } 162 171
Note:
See TracChangeset
for help on using the changeset viewer.