aboutsummaryrefslogtreecommitdiff
path: root/mod_gsoap/gsoap_win/isapi/gsoap/opsysadjust.h
blob: 20ab84bf98ed4d87f77e75146921d80c2ea33df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** windoze adaption header file, because that one is missing posix.
    @file opsysadjust.h
 */

#ifdef _WIN32

#if _MSC_VER > 1000
    #pragma warning (disable:4786)
#endif
/** C-standard interface for case insensitive compare */
inline int strcasecmp(const char *psz1, const char *psz2) {
    return stricmp(psz1, psz2);
}

#endif //_WIN32