* include/string.h (strcasecmp): Add prototype.
(strncasecmp): Add prototype.
This commit is contained in:
parent
c33ff7855e
commit
9958ad7217
|
@ -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>
|
||||
|
||||
* Makefile.in (CRT0S): Revert last change.
|
||||
|
|
|
@ -92,12 +92,14 @@ _CRTIMP int __cdecl memicmp (const void*, const void*, size_t);
|
|||
_CRTIMP char* __cdecl strdup (const char*) __MINGW_ATTRIB_MALLOC;
|
||||
_CRTIMP int __cdecl strcmpi (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
|
||||
strcasecmp (const char * __sz1, const char * __sz2)
|
||||
{return _stricmp (__sz1, __sz2);}
|
||||
_CRTIMP int __cdecl stricoll (const char*, const char*);
|
||||
_CRTIMP char* __cdecl strlwr (char*);
|
||||
_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
|
||||
strncasecmp (const char * __sz1, const char * __sz2, size_t __sizeMaxCompare)
|
||||
{return _strnicmp (__sz1, __sz2, __sizeMaxCompare);}
|
||||
|
|
Loading…
Reference in New Issue