Lines Matching refs:str
59 static void strip(char *str) in strip() argument
61 char *p = str; in strip()
67 if (p != str) in strip()
68 memmove(str, p, l + 1); in strip()
71 p = str + l - 1; in strip()
77 static void xfgets(char *str, int size, FILE *in) in xfgets() argument
79 if (!fgets(str, size, in)) in xfgets()
83 printf("%s", str); in xfgets()
428 const char *str; in check_conf() local
431 str = sym_get_string_value(sym); in check_conf()
432 str = sym_escape_string_value(str); in check_conf()
433 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()
434 free((void *)str); in check_conf()
436 str = sym_get_string_value(sym); in check_conf()
437 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()