* include/string.h (strcasecmp): Add prototype.

(strncasecmp): Add prototype.
This commit is contained in:
Danny Smith 2007-06-14 03:01:33 +00:00
parent c33ff7855e
commit 9958ad7217
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>
* include/string.h (strcasecmp): Add prototype.
(strncasecmp): Add prototype.
2007-06-13 Danny Smith <dannysmith@users.sourceforge.net> 2007-06-13 Danny Smith <dannysmith@users.sourceforge.net>
* Makefile.in (CRT0S): Revert last change. * Makefile.in (CRT0S): Revert last change.

View File

@ -92,12 +92,14 @@ _CRTIMP int __cdecl memicmp (const void*, const void*, size_t);
_CRTIMP char* __cdecl strdup (const char*) __MINGW_ATTRIB_MALLOC; _CRTIMP char* __cdecl strdup (const char*) __MINGW_ATTRIB_MALLOC;
_CRTIMP int __cdecl strcmpi (const char*, const char*); _CRTIMP int __cdecl strcmpi (const char*, const char*);
_CRTIMP int __cdecl stricmp (const char*, const char*); _CRTIMP int __cdecl stricmp (const char*, const char*);
__CRT_INLINE int __cdecl strcasecmp (const char*, const char *);
__CRT_INLINE int __cdecl __CRT_INLINE int __cdecl
strcasecmp (const char * __sz1, const char * __sz2) strcasecmp (const char * __sz1, const char * __sz2)
{return _stricmp (__sz1, __sz2);} {return _stricmp (__sz1, __sz2);}
_CRTIMP int __cdecl stricoll (const char*, const char*); _CRTIMP int __cdecl stricoll (const char*, const char*);
_CRTIMP char* __cdecl strlwr (char*); _CRTIMP char* __cdecl strlwr (char*);
_CRTIMP int __cdecl strnicmp (const char*, const char*, size_t); _CRTIMP int __cdecl strnicmp (const char*, const char*, size_t);
__CRT_INLINE int __cdecl strncasecmp (const char *. const char *, size_t);
__CRT_INLINE int __cdecl __CRT_INLINE int __cdecl
strncasecmp (const char * __sz1, const char * __sz2, size_t __sizeMaxCompare) strncasecmp (const char * __sz1, const char * __sz2, size_t __sizeMaxCompare)
{return _strnicmp (__sz1, __sz2, __sizeMaxCompare);} {return _strnicmp (__sz1, __sz2, __sizeMaxCompare);}