Lines Matching refs:temp

182   char *temp;  in what_section()  local
207 temp = xmalloc (1 + j); in what_section()
208 strncpy (temp, text, j); in what_section()
209 temp[j] = 0; in what_section()
211 index = search_sectioning (temp); in what_section()
212 free (temp); in what_section()
322 char *temp, *secname; in sectioning_underscore() local
330 temp = xmalloc (2 + strlen (cmd)); in sectioning_underscore()
331 temp[0] = COMMAND_PREFIX; in sectioning_underscore()
332 strcpy (&temp[1], cmd); in sectioning_underscore()
333 level = what_section (temp, &secname); in sectioning_underscore()
337 free (temp); in sectioning_underscore()
345 get_rest_of_line (0, &temp); in sectioning_underscore()
350 if (strlen (temp) == 0 && (!title || strlen (title) == 0)) in sectioning_underscore()
369 get_rest_of_line (0, &temp); in sectioning_underscore()
372 if (STREQ (command, "top") && strlen(temp) == 0) in sectioning_underscore()
373 temp = xstrdup (title ? title : ""); in sectioning_underscore()
385 text_expansion (temp)); in sectioning_underscore()
396 execute_string ("%s", temp); in sectioning_underscore()
399 free (temp); in sectioning_underscore()
415 get_rest_of_line (0, &temp); in sectioning_underscore()
416 execute_string ("%s", temp); in sectioning_underscore()
417 free (temp); in sectioning_underscore()
439 char *temp; in insert_and_underscore() local
450 get_rest_of_line (0, &temp); in insert_and_underscore()
453 if (STREQ (command, "top") && strlen(temp) == 0) in insert_and_underscore()
454 temp = xstrdup (title ? title : ""); in insert_and_underscore()
461 last_sectioning_title = xstrdup (temp); in insert_and_underscore()
481 char *temp1 = xmalloc (2 + strlen (temp)); in insert_and_underscore()
482 sprintf (temp1, "%s\n", temp); in insert_and_underscore()
488 execute_string ("%s\n", temp); in insert_and_underscore()
497 free (temp); in insert_and_underscore()
519 char *temp, *toc_anchor = NULL; in sectioning_html() local
552 get_rest_of_line (0, &temp); in sectioning_html()
555 if (STREQ (command, "top") && strlen(temp) == 0) in sectioning_html()
556 temp = xstrdup (title ? title : ""); in sectioning_html()
577 me_execute_string (temp); in sectioning_html()
581 execute_string ("%s", temp); in sectioning_html()
591 free (temp); in sectioning_html()