mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 22:25:28 +00:00
add strnicmp/strncasecmp
git-svn-id: svn://svn.cc65.org/cc65/trunk@3925 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -75,6 +75,8 @@ void __fastcall__ bzero (void* ptr, size_t n); /* BSD */
|
|||||||
char* __fastcall__ strdup (const char* s); /* SYSV/BSD */
|
char* __fastcall__ strdup (const char* s); /* SYSV/BSD */
|
||||||
int __fastcall__ stricmp (const char* s1, const char* s2); /* DOS/Windows */
|
int __fastcall__ stricmp (const char* s1, const char* s2); /* DOS/Windows */
|
||||||
int __fastcall__ strcasecmp (const char* s1, const char* s2); /* Same for Unix */
|
int __fastcall__ strcasecmp (const char* s1, const char* s2); /* Same for Unix */
|
||||||
|
int __fastcall__ strnicmp (const char* s1, const char* s2, size_t count); /* DOS/Windows */
|
||||||
|
int __fastcall__ strncasecmp (const char* s1, const char* s2, size_t count); /* Same for Unix */
|
||||||
char* __fastcall__ strlwr (char* s);
|
char* __fastcall__ strlwr (char* s);
|
||||||
char* __fastcall__ strlower (char* s);
|
char* __fastcall__ strlower (char* s);
|
||||||
char* __fastcall__ strupr (char* s);
|
char* __fastcall__ strupr (char* s);
|
||||||
|
Reference in New Issue
Block a user