submit.c
来自「深圳英培特EduKit-III实验箱实验程序。一共有10多个」· C语言 代码 · 共 29 行
C
29 行
/*********************************************************************
* File: submit.c
* Author: Embest J.Zhao 2004.12.20
* Desc: cgi script file
* History:
*********************************************************************/
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int i;
char *data;
long m,n;
printf("Content-type: text/html\n\n");
printf("<html><head><title>uClinux</title></head>\n");
printf("<body><h2>information about uClinux on Embest S3CEV40</h2><pre><hr>\n");
data = getenv("QUERY_STRING");
if(strstr(data, "V1"))
printf("<p>Release date : 2004.04.08</p>");
else
if (strstr(data, "V2"))
printf("<p>Kernel Version : 2.4.24</p>");
else
printf("<p>Console baud rate : 115200</p>");
printf("</pre></body></html>\n");
exit(0);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?