forked from len0rd/rockbox
wrong functions have been here
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4773 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
44171b99b6
commit
e6f1a4aaa4
1 changed files with 3 additions and 3 deletions
|
@ -23,12 +23,12 @@
|
||||||
|
|
||||||
int strcasecmp (const char *a, const char *b)
|
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
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue