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

📄 test.cgi.c

📁 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中
💻 C
字号:
/* test.cgi.c - Uses functions print_cgi_env() and print_entries()     to test CGI.   Eugene Kim, eekim@fas.harvard.edu   $Id: test.cgi.c,v 1.2 1998/05/05 19:43:00 edb Exp $   Copyright (C) 1996 Eugene Eric Kim   All Rights Reserved*/#include <stdio.h>#include "html-lib.h"#include "cgi-lib.h"int main(){  llist entries;  int status;  html_header();  html_begin("Test CGI");  h1("CGI Test Program");  printf("<hr>\n");  h2("CGI Environment Variables");  print_cgi_env();  status = read_cgi_input(&entries);  printf("<h2>Status = %d</h2>\n",status);  h2("CGI Entries");  print_entries(entries);  html_end();  list_clear(&entries);  return 0;}

⌨️ 快捷键说明

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