Searched refs:newstack (Results 1 – 2 of 2) sorted by relevance
285 FSTACK *newstack = xmalloc (sizeof (FSTACK)); in pushfile() local286 newstack->filename = input_filename; in pushfile()287 newstack->text = input_text; in pushfile()288 newstack->size = input_text_length; in pushfile()289 newstack->offset = input_text_offset; in pushfile()290 newstack->line_number = line_number; in pushfile()291 newstack->next = filestack; in pushfile()293 filestack = newstack; in pushfile()
406 HSTACK *newstack = xmalloc (sizeof (HSTACK)); in push_tag() local408 newstack->tag = tag; in push_tag()409 newstack->attribs = xstrdup (attribs); in push_tag()410 newstack->next = htmlstack; in push_tag()411 htmlstack = newstack; in push_tag()