changeset 5427 | d9b4fd6fcdc4 |
parent 5325 | b9c224e16859 |
child 5512 | 56ab281d7d3e |
5426:7a3982c50af8 | 5427:d9b4fd6fcdc4 |
---|---|
863 break; |
863 break; |
864 ++str1; |
864 ++str1; |
865 ++str2; |
865 ++str2; |
866 --maxlen; |
866 --maxlen; |
867 } |
867 } |
868 a = SDL_tolower(*str1); |
868 a = SDL_tolower((unsigned char) *str1); |
869 b = SDL_tolower(*str2); |
869 b = SDL_tolower((unsigned char) *str2); |
870 return (int) ((unsigned char) a - (unsigned char) b); |
870 return (int) ((unsigned char) a - (unsigned char) b); |
871 } |
871 } |
872 #endif |
872 #endif |
873 |
873 |
874 #ifndef HAVE_SSCANF |
874 #ifndef HAVE_SSCANF |