MCPcopy Create free account
hub / github.com/DentonW/DevIL / stricmp

Function stricmp

DevIL/src-IL/src/il_internal.cpp:25–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 it doesn't (anyone who knows why?) */
24#if !_WIN32 || (_WIN32 && __GNUC__) // Cygwin
25 int stricmp(const char *src1, const char *src2)
26 {
27 return strcasecmp(src1, src2);
28 }
29 int strnicmp(const char *src1, const char *src2, size_t max)
30 {
31 return strncasecmp(src1, src2, max);

Callers 5

iCheckLifFunction · 0.85
XpmPredefColFunction · 0.85
iCheckPspFunction · 0.85
ilLoadJascPalFunction · 0.85
iStrCmpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected