Sign in
third-party-mirror
/
mingw-w64
/
7be845814494130a499a1e2e29b9470cb2fcb44d
/
.
/
mingw-w64-crt
/
crt64
/
strcasecmp.c
blob: aeed0a809c7da6c016a6ac78432540ff6b3a8273 [
file
] [
log
] [
blame
]
#include
<string.h>
int
strcasecmp
(
const
char
*
sz1
,
const
char
*
sz2
)
{
return
_stricmp
(
sz1
,
sz2
);
}