* include/string.h (strcasecmp): Fix typo in declaration prototype.
This commit is contained in:
parent
4a2c88cdc7
commit
e10b44c2a6
|
@ -1,3 +1,7 @@
|
|||
2007-06-16 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* include/string.h (strcasecmp): Fix typo in declaration prototype.
|
||||
|
||||
2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>'
|
||||
|
||||
* include/io.h (lseek64) : Add prototype.
|
||||
|
|
|
@ -99,7 +99,7 @@ strcasecmp (const char * __sz1, const char * __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 *, 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