mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-26 23:36:37 -04:00
defined APPSVERSION for win32 simulator and defined strncasecmp
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1390 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b76bd063fb
commit
2b79949c94
2 changed files with 9 additions and 4 deletions
|
|
@ -20,6 +20,11 @@
|
|||
#include <string.h>
|
||||
|
||||
int strcasecmp (const char *a, const char *b)
|
||||
{
|
||||
return strcmp (a, b);
|
||||
}
|
||||
|
||||
int strncasecmp (const char *a, const char *b)
|
||||
{
|
||||
return strcmpi (a, b);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue