MCPcopy Create free account
hub / github.com/coreboot/coreboot / reset_subtitle

Function reset_subtitle

util/kconfig/mconf.c:338–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336}
337
338static void reset_subtitle(void)
339{
340 struct subtitle_list *pos, *tmp;
341
342 for (pos = subtitles; pos != NULL; pos = tmp) {
343 tmp = pos->next;
344 free(pos);
345 }
346 subtitles = NULL;
347 set_dialog_subtitles(subtitles);
348}
349
350static int show_textbox_ext(const char *title, const char *text, int r, int c,
351 int *vscroll, int *hscroll,

Callers 2

confFunction · 0.85
handle_exitFunction · 0.85

Calls 2

set_dialog_subtitlesFunction · 0.85
freeFunction · 0.50

Tested by

no test coverage detected