diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-06-19 09:25:49 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-06-19 09:25:49 +0000 |
commit | e6f1a4aaa460d773aa7ff8c49d49ea5a64f23b7a (patch) | |
tree | 035a2d720295c1841c788235812b97fe304433f4 /uisimulator | |
parent | 44171b99b6f8aa258cc574bce3ece3dfcc67812b (diff) | |
download | rockbox-e6f1a4aaa460d773aa7ff8c49d49ea5a64f23b7a.tar.gz rockbox-e6f1a4aaa460d773aa7ff8c49d49ea5a64f23b7a.zip |
wrong functions have been here
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4773 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/win32/string-win32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/win32/string-win32.c b/uisimulator/win32/string-win32.c index bf81fd1839..ced1a410ca 100644 --- a/uisimulator/win32/string-win32.c +++ b/uisimulator/win32/string-win32.c @@ -23,12 +23,12 @@ int strcasecmp (const char *a, const char *b) { - return strcmp (a, b); + return stricmp (a, b); } -int strncasecmp (const char *a, const char *b) +int strncasecmp (const char *a, const char *b, size_t n) { - return strcmpi (a, b); + return _strnicmp (a, b, n); } #endif |