Lines Matching defs:s2
385 * @s2: Second buffer
388 * found to be less than, to match, or be greater than s2. Only first n
391 int os_memcmp(const void *s1, const void *s2, size_t n);
412 * @s2: Second string
414 * found to be less than, to match, or be greatred than s2
416 int os_strcasecmp(const char *s1, const char *s2);
421 * @s2: Second string
424 * found to be less than, to match, or be greater than s2. Only first n
427 int os_strncasecmp(const char *s1, const char *s2, size_t n);
448 * @s2: Second string
450 * found to be less than, to match, or be greatred than s2
452 int os_strcmp(const char *s1, const char *s2);
457 * @s2: Second string
460 * found to be less than, to match, or be greater than s2. Only first n
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))