Lines Matching defs:s1
384 * @s1: First buffer
387 * Returns: An integer less than, equal to, or greater than zero if s1 is
391 int os_memcmp(const void *s1, const void *s2, size_t n);
411 * @s1: First string
413 * Returns: An integer less than, equal to, or greater than zero if s1 is
416 int os_strcasecmp(const char *s1, const char *s2);
420 * @s1: First string
423 * Returns: An integer less than, equal to, or greater than zero if s1 is
427 int os_strncasecmp(const char *s1, const char *s2, size_t n);
447 * @s1: First string
449 * Returns: An integer less than, equal to, or greater than zero if s1 is
452 int os_strcmp(const char *s1, const char *s2);
456 * @s1: First string
459 * Returns: An integer less than, equal to, or greater than zero if s1 is
463 int os_strncmp(const char *s1, const char *s2, size_t n);
532 #define os_memcmp(s1, s2, n) memcmp((s1), (s2), (n))
540 #define os_strcasecmp(s1, s2) _stricmp((s1), (s2))
542 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2))
547 #define os_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n))
549 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n))
556 #define os_strcmp(s1, s2) strcmp((s1), (s2))
559 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))