summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-06-19 09:25:49 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-06-19 09:25:49 +0000
commite6f1a4aaa460d773aa7ff8c49d49ea5a64f23b7a (patch)
tree035a2d720295c1841c788235812b97fe304433f4
parent44171b99b6f8aa258cc574bce3ece3dfcc67812b (diff)
downloadrockbox-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
-rw-r--r--uisimulator/win32/string-win32.c6
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 @@
23 23
24int strcasecmp (const char *a, const char *b) 24int strcasecmp (const char *a, const char *b)
25{ 25{
26 return strcmp (a, b); 26 return stricmp (a, b);
27} 27}
28 28
29int strncasecmp (const char *a, const char *b) 29int strncasecmp (const char *a, const char *b, size_t n)
30{ 30{
31 return strcmpi (a, b); 31 return _strnicmp (a, b, n);
32} 32}
33 33
34#endif 34#endif