Lines Matching refs:text
27 static char *text; variable
44 text = xmalloc(START_STRSIZE); in new_string()
47 *text = 0; in new_string()
56 text = realloc(text, new_size); in append_string()
59 memcpy(text + text_size, str, size); in append_string()
61 text[text_size] = 0; in append_string()
66 text = xmalloc(size + 1); in alloc_string()
67 memcpy(text, str, size); in alloc_string()
68 text[size] = 0; in alloc_string()
114 zconflval.string = text;
150 zconflval.string = text;