Index: src/func.c ================================================================== --- src/func.c +++ src/func.c @@ -14,11 +14,11 @@ ** ** There is only one exported symbol in this file - the function ** sqliteRegisterBuildinFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id: func.c,v 1.19 2002/05/31 15:51:25 drh Exp $ +** $Id: func.c,v 1.20 2002/06/09 10:14:19 drh Exp $ */ #include #include #include #include @@ -410,11 +410,11 @@ /* ** This function registered all of the above C functions as SQL ** functions. This should be the only routine in this file with ** external linkage. */ -void sqliteRegisterBuildinFunctions(sqlite *db){ +void sqliteRegisterBuiltinFunctions(sqlite *db){ static struct { char *zName; int nArg; void (*xFunc)(sqlite_func*,int,const char**); } aFuncs[] = { Index: src/main.c ================================================================== --- src/main.c +++ src/main.c @@ -12,11 +12,11 @@ ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.77 2002/05/23 13:15:37 drh Exp $ +** $Id: main.c,v 1.78 2002/06/09 10:14:19 drh Exp $ */ #include "sqliteInt.h" #include "os.h" #include @@ -330,11 +330,11 @@ sqliteHashInit(&db->trigHash, SQLITE_HASH_STRING, 0); sqliteHashInit(&db->trigDrop, SQLITE_HASH_STRING, 0); sqliteHashInit(&db->tblDrop, SQLITE_HASH_POINTER, 0); sqliteHashInit(&db->idxDrop, SQLITE_HASH_POINTER, 0); sqliteHashInit(&db->aFunc, SQLITE_HASH_STRING, 1); - sqliteRegisterBuildinFunctions(db); + sqliteRegisterBuiltinFunctions(db); db->onError = OE_Default; db->priorNewRowid = 0; db->magic = SQLITE_MAGIC_BUSY; /* Open the backend database driver */ Index: src/sqliteInt.h ================================================================== --- src/sqliteInt.h +++ src/sqliteInt.h @@ -9,11 +9,11 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* ** 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" #include "vdbe.h" #include "parse.h" @@ -884,11 +884,11 @@ ExprList *sqliteExprListDup(ExprList*); 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*); void sqliteChangeCookie(sqlite *); void sqliteCreateTrigger(Parse*, Token*, int, int, IdList*, Token*,