📄 dblib.h
字号:
/****************************************************************************/
/* */
/* */
/* dblib.h v1.3 (c) 1990 Ken Harris */
/* */
/* */
/****************************************************************************/
/* */
/* This software is made available on an AS-IS basis. Unrestricted */
/* use is granted provided that the copyright notice remains intact. */
/* The author makes no warranties expressed or implied. */
/* */
/****************************************************************************/
/*
* This file contains header information for building the DB library
* routines. It does not need to be included in applications. It defines
* the right set of include files for each configuration.
*/
#include <stdio.h>
/*
* Microsoft C V5.10
*/
#ifdef MSC
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* Turbo C V2.0
*/
#ifdef TURBO
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* DEC Ultrix gcc V1.36
*/
#ifdef ULTRIX
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
/*
* SYSV - 3b1 rel 3
*/
#ifdef SYSV
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ctype.h>
#endif
#include "db.h"
void *memcpy();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -