1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Added the nextchar.c extension. Minor changes to the spellfix.c extension

so that it can be appended to an amalgamation and compiled without duplicating
symbols.

FossilOrigin-Name: 56b9a417f5451631f11c5206d625f11472ee65f9
This commit is contained in:
drh
2013-04-25 19:31:33 +00:00
parent e67f418d10
commit ea41dc44c5
9 changed files with 336 additions and 41 deletions

View File

@ -17,15 +17,17 @@
#include "sqlite3ext.h"
SQLITE_EXTENSION_INIT1
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#define ALWAYS(X) 1
#define NEVER(X) 0
typedef unsigned char u8;
typedef unsigned short u16;
#include <ctype.h>
#ifndef SQLITE_AMALGAMATION
# include <string.h>
# include <stdio.h>
# include <stdlib.h>
# include <assert.h>
# define ALWAYS(X) 1
# define NEVER(X) 0
typedef unsigned char u8;
typedef unsigned short u16;
# include <ctype.h>
#endif
/*
** Character classes for ASCII characters: