Lines Matching refs:text
26 static char *text; variable
43 text = malloc(START_STRSIZE); in new_string()
46 *text = 0; in new_string()
59 text = realloc(text, new_size); in append_string()
62 memcpy(text + text_size, str, size); in append_string()
64 text[text_size] = 0; in append_string()
69 text = malloc(size + 1); in alloc_string()
70 memcpy(text, str, size); in alloc_string()
71 text[size] = 0; in alloc_string()
111 zconflval.string = text;
144 zconflval.string = text;