summaryrefslogtreecommitdiff
path: root/src/include/xbase.h
blob: 4ab88921d99ae2a86ae26a14b0dc91fb24195e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*  xbase.h


Xbase64 Software Library

Copyright (c) 1997,2003,2014,2022,2023 Gary A Kunkel

The xb64 software library is covered under the terms of the GPL Version 3, 2007 license

Email Contact:

    XDB-devel@lists.sourceforge.net
    XDB-users@lists.sourceforge.net

*/

#include <xbconfig.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <math.h>

#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#endif

#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif

// #ifdef STDC_HEADERS
#ifdef HAVE_STDARGS_H
#include <stdargs.h>
#endif

#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif

#ifdef HAVE_PWD_H
#include <pwd.h>
#endif

#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif

#ifdef HAVE_STAT_H
#include <sys/stat.h>
#endif

#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#ifdef HAVE_VARARGS_H
#ifndef HAVE_STDARG_H
#include <varargs.h>
#endif
#endif

#ifdef HAVE_WINDOWS_H
#include <windows.h>
#include <io.h>
#endif

#include <iomanip>

#include <xbretcod.h>
#include <xbtypes.h>
#include <xbstring.h>
#include <xbssv.h>
#include <xbdate.h>
#include <xbtblmgr.h>
#include <xbxbase.h>
#include <xblnknod.h>
#include <xblnklst.h>
#include <xblnklstord.h>
#include <xbfile.h>
#include <xblog.h>
#include <xbmemo.h>
#include <xbbcd.h>
#include <xbuda.h>
#include <xbexpnode.h>
#include <xbexp.h>

#include <xbtag.h>
#include <xbblkread.h>
#include <xbdbf.h>             /* dbf base class   */
#include <xbindex.h>           /* index base class */
#include <xbfilter.h>
#include <xbsql.h>