strcasecmp is in the system libraries under Mac OS X
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -105,7 +105,7 @@
|
|||||||
// string functions
|
// string functions
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
#ifdef __WXMAC__
|
#if defined(__WXMAC__) && !defined(__DARWIN)
|
||||||
int strcasecmp(const char *str_1, const char *str_2)
|
int strcasecmp(const char *str_1, const char *str_2)
|
||||||
{
|
{
|
||||||
register char c1, c2;
|
register char c1, c2;
|
||||||
@@ -134,7 +134,7 @@ int strncasecmp(const char *str_1, const char *str_2, size_t maxchar)
|
|||||||
return 0 ;
|
return 0 ;
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif // wxMAC
|
#endif // __WXMAC__ && !__DARWIN__
|
||||||
|
|
||||||
#if defined( __VMS__ ) && ( __VMS_VER < 70000000 )
|
#if defined( __VMS__ ) && ( __VMS_VER < 70000000 )
|
||||||
// we have no strI functions under VMS, therefore I have implemented
|
// we have no strI functions under VMS, therefore I have implemented
|
||||||
|
Reference in New Issue
Block a user