mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
14 lines
248 B
C
14 lines
248 B
C
/*
|
|
* strcasecmp, strncasecmp
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
#include <string.h>
|
|
#define strcasecmp(s1, s2) _stricmp(s1, s2)
|
|
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
|
|
#else
|
|
#include <strings.h>
|
|
#endif
|