Lines Matching refs:s2
40 char *s1, *s2, *this;
57 s2 = calloc(maxsize, 1);
58 if (s2 == NULL)
65 (void)strlcpy(s2, s1, maxsize);
73 if ((strlen(s2) + strlen(s1) + strlen(replstr) -
75 (void)strlcat(s2, s1, maxsize);
78 (void)strncat(s2, s1, (uintptr_t)this - (uintptr_t)s1);
79 (void)strcat(s2, replstr);
82 (void)strcat(s2, s1);
84 *str = s2;