Searched defs:s2 (Results 1 - 25 of 303) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dbcmp.c30 bcmp(char *s1, char *s2, int len) argument
34 if (*s1++ != *s2++)
H A Dstrncat.c30 * Concatenate s2 on the end of s1. S1's space must be large enough.
36 strncat(char *s1, char *s2, int n) argument
44 while (*s1++ = *s2++)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dstpcpy.c34 * Copy string s2 to s1. s1 must be large enough.
38 stpcpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2) argument
40 (void) strcpy(s1, s2);
H A Dstrcat.c37 * Concatenate s2 on the end of s1. S1's space must be large enough.
41 strcat(char *s1, const char *s2) argument
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++)
47 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrcpy.c37 * Copy string s2 to s1. s1 must be large enough.
41 strcpy(char *s1, const char *s2) argument
45 while (*s1++ = *s2++)
H A Dstrdup.c48 char *s2 = malloc(strlen(s1) + 1); local
50 if (s2)
51 (void) strcpy(s2, s1);
52 return (s2);
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++)
49 return (n == 0 ? 0 : *(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrndup.c38 char *s2; local
41 if ((s2 = malloc(n + 1)) != NULL)
42 (void) strlcpy(s2, s1, n + 1);
43 return (s2);
H A Dstpncpy.c34 * Copy s2 to s1, truncating or null-padding to always copy n bytes
39 stpncpy(char *_RESTRICT_KYWD s1, const char *_RESTRICT_KYWD s2, size_t n) argument
41 size_t len = strnlen(s2, n);
43 (void) strncpy(s1, s2, n);
H A Dstrncat.c37 * Concatenate s2 on the end of s1. S1's space must be large enough.
42 strncat(char *s1, const char *s2, size_t n) argument
50 while (*s1++ = *s2++)
H A Dstrncpy.c37 * Copy s2 to s1, truncating or null-padding to always copy n bytes
41 strncpy(char *s1, const char *s2, size_t n) argument
46 while ((--n != 0) && ((*s1++ = *s2++) != '\0'))
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwsdup.c44 wchar_t *s2; local
46 s2 = malloc((wcslen(s1) + 1) * sizeof (wchar_t));
47 return (s2 == NULL ? NULL : wcscpy(s2, s1));
H A Dstrtows.c36 strtows(wchar_t *s1, char *s2) argument
40 ret = mbstowcs(s1, s2, TMP_MAX);
49 wstostr(char *s1, wchar_t *s2) argument
53 ret = wcstombs(s1, s2, TMP_MAX);
/illumos-gate/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))) {
54 s2++;
58 return ((n < 0)? 0: (*s1 - *s2));
/illumos-gate/usr/src/common/util/
H A Dbcmp.c47 bcmp(const void *s1, const void *s2, size_t len) argument
49 return (memcmp(s1, s2, len) == 0 ? 0 : 1);
H A Dbcopy.c47 * Copy s1 to s2, always copy n bytes.
51 bcopy(const void *s1, void *s2, size_t len) argument
53 (void) memmove(s2, s1, len);
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dt-strrevcmp.c26 char *s2; local
31 s2 = "equal";
32 SM_TEST(sm_strrevcmp(s1, s2) == 0);
35 s2 = "qual";
36 SM_TEST(sm_strrevcmp(s1, s2) > 0);
39 s2 = "equal";
40 SM_TEST(sm_strrevcmp(s1, s2) < 0);
43 s2 = "equal";
44 SM_TEST(sm_strrevcmp(s1, s2) < 0);
47 s2
[all...]
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dbcmp.c50 bcmp(char *s1, char *s2, int len) argument
52 if (_memcmp(s1, s2, (size_t)len) == 0)
H A Dbcopy.c49 * Copy s1 to s2, always copy n bytes.
53 bcopy(char *s1, char *s2, int len) argument
56 (void) _memmove(s2, s1, (size_t)len);
/illumos-gate/usr/src/cmd/lp/lib/lp/
H A Dcs_strncmp.c33 * returns: s1>s2; >0 s1==s2; 0 s1<s2; <0
40 char * s2,
44 cs_strncmp(s1, s2, n)
45 register char *s1, *s2;
49 if(s1 == s2)
51 while(--n >= 0 && toupper(*s1) == toupper(*s2++))
54 return((n < 0)? 0: (toupper(*s1) - toupper(*--s2)));
38 cs_strncmp( char * s1, char * s2, int n ) argument
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrcmp.c45 strcmp(const char *s1, const char *s2) argument
47 while (*s1 == *s2++)
50 return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
H A Dstrncmp.c39 strncmp(const char *s1, const char *s2, size_t n) argument
45 if (*s1 != *s2++)
47 *(const unsigned char *)(s2 - 1));
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dstrcmp.c32 strcmp(const char *s1, const char *s2) argument
34 for (; *s1 == *s2 && *s1; s1++, s2++);
35 return (unsigned char)*s1 - (unsigned char)*s2;
/illumos-gate/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
48 s2 = as2;
49 c = *s2;
54 s2++;
55 while ((c = *s2++) == *s1++ && c)
60 s2 = as2;
61 c = *s2;

Completed in 69 milliseconds

1234567891011>>