bchs_tuto/vars.c

20 lines
299 B
C
Raw Normal View History

2016-12-11 18:30:55 +00:00
#include <stdlib.h>
#include <stdio.h>
int
main(void)
{
puts("Status: 200 OK\r");
puts("Content-Type: text/html\r");
puts("\r");
puts("<html>");
puts("<body>");
char * var = getenv("HTTP_HOST");
if (var != NULL)
puts(var);
puts("</body>");
puts("</html>");
return(EXIT_SUCCESS);
}