case insensitive strcmp
| 215 | |
| 216 | // case insensitive strcmp |
| 217 | int stricmp(const char* a, const char* b) { |
| 218 | for(;; a++, b++) { |
| 219 | const int d = tolower(*a) - tolower(*b); |
| 220 | if(d != 0 || !*a) |
| 221 | return d; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | struct Endianness |
| 226 | { |