D | os.h | 247 #define os_memcmp(s1, s2, n) memcmp((s1), (s2), (n)) argument 250 #define os_memcmp_const(s1, s2, n) memcmp((s1), (s2), (n)) argument 259 #define os_strcasecmp(s1, s2) _stricmp((s1), (s2)) argument 261 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2)) argument 266 #define os_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n)) argument 268 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n)) argument 275 #define os_strcmp(s1, s2) strcmp((s1), (s2)) argument 278 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n)) argument
|