MCPcopy Index your code
hub / github.com/apache/httpd / menu_header

Function menu_header

modules/mappers/mod_imagemap.c:476–489  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

474}
475
476static void menu_header(request_rec *r, char *menu)
477{
478 ap_set_content_type_ex(r, "text/html; charset=ISO-8859-1", 1);
479
480 ap_rvputs(r, DOCTYPE_HTML_4_01, "<html><head>\n<title>Menu for ",
481 ap_escape_html(r->pool, r->uri),
482 "</title>\n</head><body>\n", NULL);
483
484 if (!strcasecmp(menu, "formatted")) {
485 ap_rvputs(r, "<h1>Menu for ",
486 ap_escape_html(r->pool, r->uri),
487 "</h1>\n<hr />\n\n", NULL);
488 }
489}
490
491static void menu_blank(request_rec *r, char *menu)
492{

Callers 1

imap_handler_internalFunction · 0.85

Calls 2

ap_set_content_type_exFunction · 0.85
ap_rvputsFunction · 0.85

Tested by

no test coverage detected