Lines Matching defs:s
573 alloc_string(s)
574 char *s;
578 if (s == (char *)NULL) {
581 ns = (char *)zalloc(strlen(s) + 1);
582 (void) strcpy(ns, s);
647 #define must_be(s, c) if (*s++ != c) return (0)
648 #define skip_digits(s) while (isdigit(*s)) s++
653 #define skip_digit_or_hexupper(s) while (isdigit(*s) || \
654 (isxdigit(*s) && isupper(*s))) s++
671 must_be(name, 's');
748 must_be(name, 's');
808 char *s;
813 s = strchr(src, 'c');
814 if (s != NULL) {
815 (void) strcpy(dst, s);
819 s = dst + strlen(dst) - 2;
820 if (*s == 's') {
821 *s = 0;
863 char s[256];
867 (void) strcpy(s, hdr);
868 for (p = s; *p; p++) {
874 err_print("%s", p);
875 p = s;