⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmllib.c

📁 CGI程序实例
💻 C
字号:
/* htmllib.c * HTML common library functions for the CGI programs. */#include <stdio.h>#include "htmllib.h"void htmlHeader(char *title) {  printf("Content-type: text/html\n\n<HTML><HEAD><TITLE>%s</TITLE></HEAD>",		  title);}void htmlBody() {    printf("<BODY>");}void htmlFooter() {    printf("</BODY></HTML>");}void addTitleElement(char *title) {	printf("<H1>%s</H1>", title);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -