Lines Matching refs:str
56 static void strip(char *str) in strip() argument
58 char *p = str; in strip()
64 if (p != str) in strip()
65 memmove(str, p, l + 1); in strip()
68 p = str + l - 1; in strip()
74 static void xfgets(char *str, int size, FILE *in) in xfgets() argument
76 if (!fgets(str, size, in)) in xfgets()
80 printf("%s", str); in xfgets()
425 const char *str; in check_conf() local
428 str = sym_get_string_value(sym); in check_conf()
429 str = sym_escape_string_value(str); in check_conf()
430 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()
431 free((void *)str); in check_conf()
433 str = sym_get_string_value(sym); in check_conf()
434 printf("%s%s=%s\n", CONFIG_, sym->name, str); in check_conf()