27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <ctype.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#ifdef __MINGW32__
# include <windows.h>
#else
# include <pwd.h>
#endif
#include "sqlite3.h"
/*
** Typedef for a 64-bit integer
|
>
>
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include <ctype.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>
#ifdef __MINGW32__
# include <windows.h>
#else
# include <sys/types.h>
# include <signal.h>
# include <pwd.h>
#endif
#include "sqlite3.h"
/*
** Typedef for a 64-bit integer
|