Searched defs:s1 (Results 1 - 25 of 146) sorted by relevance

123456

/osnet-11/usr/src/lib/libmail/common/
H A Dcasncmp.c37 * int casncmp(char *s1, char *s2, ssize_t n)
49 casncmp(char *s1, char *s2, ssize_t n) argument
51 if (s1 == s2)
53 while ((--n >= 0) && (tolower(*s1) == tolower(*s2))) {
55 if (*s1++ == '\0')
58 return ((n < 0)? 0: (*s1 - *s2));
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dt-strrevcmp.c25 char *s1; local
30 s1 = "equal";
32 SM_TEST(sm_strrevcmp(s1, s2) == 0);
34 s1 = "equal";
36 SM_TEST(sm_strrevcmp(s1, s2) > 0);
38 s1 = "qual";
40 SM_TEST(sm_strrevcmp(s1, s2) < 0);
42 s1 = "Equal";
44 SM_TEST(sm_strrevcmp(s1, s2) < 0);
46 s1
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dstpcpy.c34 * Copy string s2 to s1. s1 must be large enough.
35 * return a pointer to the terminating null character of s1.
38 stpcpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2) argument
40 (void) strcpy(s1, s2);
41 return (s1 + strlen(s1));
H A Dstrcat.c37 * Concatenate s2 on the end of s1. S1's space must be large enough.
38 * Return s1.
41 strcat(char *s1, const char *s2) argument
43 char *os1 = s1;
45 while (*s1++)
47 --s1;
48 while (*s1++ = *s2++)
H A Dstrcmp.c37 * Compare strings: s1>s2: >0 s1==s2: 0 s1<s2: <0
40 strcmp(const char *s1, const char *s2) argument
42 if (s1 == s2)
44 while (*s1 == *s2++)
45 if (*s1++ == '\0')
47 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrcpy.c37 * Copy string s2 to s1. s1 must be large enough.
38 * return s1
41 strcpy(char *s1, const char *s2) argument
43 char *os1 = s1;
45 while (*s1++ = *s2++)
H A Dstrdup.c42 * pointed to by s1
46 strdup(const char *s1) argument
48 char *s2 = malloc(strlen(s1) + 1);
51 (void) strcpy(s2, s1);
H A Dstrncmp.c38 * returns: s1>s2; >0 s1==s2; 0 s1<s2; <0
41 strncmp(const char *s1, const char *s2, size_t n) argument
44 if (s1 == s2)
46 while (--n != 0 && *s1 == *s2++)
47 if (*s1++ == '\0')
49 return (n == 0 ? 0 : *(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrndup.c36 strndup(const char *s1, size_t n) argument
40 n = strnlen(s1, n);
44 return (memcpy(s2, s1, n));
H A Dstpncpy.c34 * Copy s2 to s1, truncating or null-padding to always copy n bytes
35 * return a pointer to the terminating null byte in s1, or,
36 * if s1 is not null-terminated, s1 + n.
39 stpncpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n) argument
43 (void) strncpy(s1, s2, n);
45 return ((len < n) ? s1 + len : s1 + n);
H A Dstrncat.c34 * Concatenate s2 on the end of s1. S1's space must be large enough.
36 * Return s1.
39 strncat(char *s1, const char *s2, size_t n) argument
41 char *os1 = s1;
47 while (*s1++)
49 --s1;
50 while (*s1++ = *s2++)
52 s1[-1] = '\0';
H A Dstrncpy.c37 * Copy s2 to s1, truncating or null-padding to always copy n bytes
38 * return s1
41 strncpy(char *s1, const char *s2, size_t n) argument
43 char *os1 = s1;
46 while ((--n != 0) && ((*s1++ = *s2++) != '\0'))
50 *s1++ = '\0';
H A Dascii_strcasecmp.c47 ascii_strcasecmp(const char *s1, const char *s2) argument
50 const unsigned char *us1 = (const unsigned char *)s1;
H A Dascii_strncasecmp.c47 ascii_strncasecmp(const char *s1, const char *s2, size_t n) argument
50 const unsigned char *us1 = (const unsigned char *)s1;
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dwsdup.c32 * pointed to by s1
42 wcsdup(const wchar_t *s1) argument
46 s2 = malloc((wcslen(s1) + 1) * sizeof (wchar_t));
47 return (s2 == NULL ? NULL : wcscpy(s2, s1));
51 wsdup(const wchar_t *s1) argument
53 return (wcsdup(s1));
H A Dstrtows.c36 strtows(wchar_t *s1, char *s2) argument
40 ret = mbstowcs(s1, s2, TMP_MAX);
45 return (s1);
49 wstostr(char *s1, wchar_t *s2) argument
53 ret = wcstombs(s1, s2, TMP_MAX);
58 return (s1);
H A Dwscasecmp.c28 * returns: s1>s2: >0 s1==s2: 0 s1<s2: <0
40 wcscasecmp(const wchar_t *s1, const wchar_t *s2) argument
42 if (s1 == s2)
45 while (towlower(*s1) == towlower(*s2++))
46 if (*s1++ == 0)
48 return (towlower(*s1) - towlower(*(s2 - 1)));
52 wscasecmp(const wchar_t *s1, const wchar_t *s2) argument
54 return (wcscasecmp(s1, s
[all...]
H A Dstrcasecmp.c40 strcasecmp(const char *s1, const char *s2) argument
43 extern int ascii_strcasecmp(const char *s1, const char *s2);
48 if (s1 == s2)
55 return (ascii_strcasecmp(s1, s2));
58 us1 = (const uchar_t *)s1;
H A Dstrncasecmp.c40 strncasecmp(const char *s1, const char *s2, size_t n) argument
43 extern int ascii_strncasecmp(const char *s1, const char *s2, size_t n);
48 if (s1 == s2)
55 return (ascii_strncasecmp(s1, s2, n));
58 us1 = (const uchar_t *)s1;
H A Dwscat.c33 * Concatenate s2 on the end of s1. S1's space must be large enough.
34 * return s1.
45 wcscat(wchar_t *s1, const wchar_t *s2) argument
47 wchar_t *os1 = s1;
49 while (*s1++) /* find end of s1 */
51 --s1;
52 while (*s1++ = *s2++) /* copy s2 to s1 */
58 wscat(wchar_t *s1, cons argument
[all...]
H A Dwscmp.c33 * Compare strings: s1>s2: >0 s1==s2: 0 s1<s2: <0
44 wcscmp(const wchar_t *s1, const wchar_t *s2) argument
46 if (s1 == s2)
49 while (*s1 == *s2++)
50 if (*s1++ == 0)
52 return (*s1 - *(s2 - 1));
56 wscmp(const wchar_t *s1, const wchar_t *s2) argument
58 return (wcscmp(s1, s
[all...]
H A Dwsncasecmp.c28 * returns: s1>s2: >0 s1==s2: 0 s1<s2: <0
40 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
42 if (s1 == s2)
46 while (--n > 0 && towlower(*s1) == towlower(*s2++))
47 if (*s1++ == 0)
49 return ((n == 0) ? 0 : (towlower(*s1) - towlower(*(s2 - 1))));
53 wsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
55 return (wcsncasecmp(s1, s
[all...]
H A Dwsncmp.c34 * returns: s1>s2: >0 s1==s2: 0 s1<s2: <0
45 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
47 if (s1 == s2)
51 while (--n > 0 && *s1 == *s2++)
52 if (*s1++ == 0)
54 return ((n == 0) ? 0 : (*s1 - *(s2 - 1)));
58 wsncmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
60 return (wcsncmp(s1, s
[all...]
H A Dwsxfrm.c40 wsxfrm(wchar_t *s1, const wchar_t *s2, size_t n) argument
42 return (wcsxfrm(s1, s2, n));
46 wscoll(const wchar_t *s1, const wchar_t *s2) argument
48 return (wcscoll(s1, s2));
/osnet-11/usr/src/lib/libgen/common/
H A Dstrfind.c35 * If `s2' is a substring of `s1' return the offset of the first
36 * occurrence of `s2' in `s1',
43 const char *s1, *s2; local
47 s1 = as1;
51 while (*s1)
52 if (*s1++ == c) {
53 offset = s1 - as1 - 1;
55 while ((c = *s2++) == *s1++ && c)
59 s1 = offset + as1 + 1;

Completed in 76 milliseconds

123456