hcommon.h

来自「《Web编程专家指南》」· C头文件 代码 · 共 37 行

H
37
字号
/*
 * HCOMMON.h - definitions common to all source files in httpd.c
 *
 * John Calcote 5/10/95
 * internet: jcalcote@novell.com
 */


#ifndef _HCOMMON_H
#define _HCOMMON_H

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <conio.h>
#include <fcntl.h>
#include <process.h>
#include <time.h>
#include <errno.h>
#include <sys/stat.h>

#ifndef _HDEFS_H
#include "hdefs.h"
#endif

#ifndef _HGLOBALS_H
#include "hglobals.h"
#endif

#ifndef _HLOG_H
#include "hlog.h"
#endif

#endif   /* _HCOMMON_H */

⌨️ 快捷键说明

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