Lines Matching refs:text
13 static void append_extra_text(char* text);
112 extra_text_type* text = (extra_text_type*)malloc(sizeof(extra_text_type)); in begin_extra_text() local
113 text->lineno = lineno; in begin_extra_text()
114 text->which = which; in begin_extra_text()
115 text->data = NULL; in begin_extra_text()
116 text->len = 0; in begin_extra_text()
117 text->next = NULL; in begin_extra_text()
119 g_extraText = text; in begin_extra_text()
121 g_nextExtraText->next = text; in begin_extra_text()
123 g_nextExtraText = text; in begin_extra_text()
126 void append_extra_text(char* text) in append_extra_text() argument
129 g_nextExtraText->data = strdup(text); in append_extra_text()
130 g_nextExtraText->len = strlen(text); in append_extra_text()
134 unsigned len = strlen(text); in append_extra_text()
138 memcpy(g_nextExtraText->data+oldLen, text, len); in append_extra_text()