Lines Matching defs:s
80 fn_new(const char *s)
89 if (s != NULL && *s) {
90 int len = strlen(s);
96 (void) strlcpy(fnp->fn_buf, s, buflen);
202 * calling fn_renew(fnp, s) is the same as calling:
204 * fn_new(s);
207 fn_renew(struct fn *fnp, const char *s)
210 fn_puts(fnp, s);
255 fn_puts(struct fn *fnp, const char *s)
258 while (s != NULL && *s)
259 fn_putc(fnp, *s++);
394 fn_list_adds(struct fn_list *fnlp, const char *s)
396 fn_list_addfn(fnlp, fn_new(s));
462 /* all the fn's were moved off the second list */
472 * range of characters appended is the character at *s up to but not including
476 fn_list_appendrange(struct fn_list *fnlp, const char *s, const char *limit)
490 for (ptr = s; ptr < limit; ptr++)
517 * which file is oldest, or when there's a tie it turns to the modification
518 * times in the stat structs, or when there's still a tie lexical sorting.