Eneboo - Documentación para desarrolladores
|
#include "sqliteInt.h"
#include <stdarg.h>
#include <ctype.h>
'defines' | |
#define | _64e3 (64.0 * 64.0 * 64.0) |
#define | _64e4 (64.0 * 64.0 * 64.0 * 64.0) |
#define | _64e15 (_64e3 * _64e4 * _64e4 * _64e4) |
#define | _64e16 (_64e4 * _64e4 * _64e4 * _64e4) |
#define | _64e63 (_64e15 * _64e16 * _64e16 * _64e16) |
#define | _64e64 (_64e16 * _64e16 * _64e16 * _64e16) |
#define | sqliteNextChar(X) (++(X)); |
#define | sqliteCharVal(X) ((int)*(X)) |
Funciones | |
void * | sqliteMalloc (int n) |
void * | sqliteMallocRaw (int n) |
void | sqliteFree (void *p) |
void * | sqliteRealloc (void *p, int n) |
char * | sqliteStrDup (const char *z) |
char * | sqliteStrNDup (const char *z, int n) |
void | sqliteSetString (char **pz, const char *zFirst,...) |
void | sqliteSetNString (char **pz,...) |
void | sqliteErrorMsg (Parse *pParse, const char *zFormat,...) |
void | sqliteDequote (char *z) |
int | sqliteHashNoCase (const char *z, int n) |
int | sqliteStrICmp (const char *zLeft, const char *zRight) |
int | sqliteStrNICmp (const char *zLeft, const char *zRight, int N) |
int | sqliteIsNumber (const char *z) |
double | sqliteAtoF (const char *z, const char **pzEnd) |
int | sqliteFitsIn32Bits (const char *zNum) |
int | sqliteCompare (const char *atext, const char *btext) |
int | sqliteSortCompare (const char *a, const char *b) |
void | sqliteRealToSortable (double r, char *z) |
int | sqliteGlobCompare (const unsigned char *zPattern, const unsigned char *zString) |
int | sqliteLikeCompare (const unsigned char *zPattern, const unsigned char *zString) |
int | sqliteSafetyOn (sqlite *db) |
int | sqliteSafetyOff (sqlite *db) |
int | sqliteSafetyCheck (sqlite *db) |
Variables | |
int | sqlite_malloc_failed = 0 |
#define _64e15 (_64e3 * _64e4 * _64e4 * _64e4) |
#define _64e16 (_64e4 * _64e4 * _64e4 * _64e4) |
#define _64e3 (64.0 * 64.0 * 64.0) |
#define _64e4 (64.0 * 64.0 * 64.0 * 64.0) |
#define _64e63 (_64e15 * _64e16 * _64e16 * _64e16) |
#define _64e64 (_64e16 * _64e16 * _64e16 * _64e16) |
#define sqliteCharVal | ( | X | ) | ((int)*(X)) |
#define sqliteNextChar | ( | X | ) | (++(X)); |
double sqliteAtoF | ( | const char * | z, |
const char ** | pzEnd | ||
) |
int sqliteCompare | ( | const char * | atext, |
const char * | btext | ||
) |
void sqliteDequote | ( | char * | z | ) |
void sqliteErrorMsg | ( | Parse * | pParse, |
const char * | zFormat, | ||
... | |||
) |
int sqliteFitsIn32Bits | ( | const char * | zNum | ) |
void sqliteFree | ( | void * | p | ) |
int sqliteGlobCompare | ( | const unsigned char * | zPattern, |
const unsigned char * | zString | ||
) |
int sqliteIsNumber | ( | const char * | z | ) |
int sqliteLikeCompare | ( | const unsigned char * | zPattern, |
const unsigned char * | zString | ||
) |
void* sqliteMalloc | ( | int | n | ) |
void* sqliteMallocRaw | ( | int | n | ) |
void* sqliteRealloc | ( | void * | p, |
int | n | ||
) |
void sqliteRealToSortable | ( | double | r, |
char * | z | ||
) |
void sqliteSetNString | ( | char ** | pz, |
... | |||
) |
void sqliteSetString | ( | char ** | pz, |
const char * | zFirst, | ||
... | |||
) |
int sqliteSortCompare | ( | const char * | a, |
const char * | b | ||
) |
char* sqliteStrDup | ( | const char * | z | ) |
int sqliteStrICmp | ( | const char * | zLeft, |
const char * | zRight | ||
) |
char* sqliteStrNDup | ( | const char * | z, |
int | n | ||
) |