dblib.h

来自「数据库C语言开发工具包,可以方便地移植到嵌入式系统中」· C头文件 代码 · 共 67 行

H
67
字号
/****************************************************************************/
/*                                                                          */
/*                                                                          */
/*      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 + =
减小字号Ctrl + -
显示快捷键?