1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix the spelling of sqliteRegisterBuiltinFunctions(). (CVS 613)

FossilOrigin-Name: 74d297d97e66452acc5c21048ee8ddf2a90c846f
This commit is contained in:
drh
2002-06-09 10:14:18 +00:00
parent 48185c15c7
commit 28f4b6885b
5 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.121 2002/06/08 23:25:09 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.122 2002/06/09 10:14:19 drh Exp $
*/
#include "sqlite.h"
#include "hash.h"
@@ -886,7 +886,7 @@ SrcList *sqliteSrcListDup(SrcList*);
IdList *sqliteIdListDup(IdList*);
Select *sqliteSelectDup(Select*);
FuncDef *sqliteFindFunction(sqlite*,const char*,int,int,int);
void sqliteRegisterBuildinFunctions(sqlite*);
void sqliteRegisterBuiltinFunctions(sqlite*);
int sqliteSafetyOn(sqlite*);
int sqliteSafetyOff(sqlite*);
int sqliteSafetyCheck(sqlite*);