Squashed commit of the following:

commit 011d9b6b07d904ad1e81ef7c747269903e2d47c4
Author: David Anderson <dvander@alliedmods.net>
Date:   Mon Jan 11 00:17:08 2010 -0600

    Initial import from Subversion (amxmodx/trunk rev 3757).
This commit is contained in:
David Anderson
2014-02-06 23:06:54 -08:00
parent adab9c93a0
commit b706108ed6
96 changed files with 96 additions and 96 deletions

View File

@ -12,7 +12,7 @@
** This file contains C code routines that used to generate VDBE code
** that implements the ALTER TABLE command.
**
** $Id$
** $Id: alter.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include <ctype.h>

View File

@ -11,7 +11,7 @@
*************************************************************************
** This file contains code associated with the ANALYZE command.
**
** @(#) $Id$
** @(#) $Id: analyze.c 2779 2006-06-04 04:29:46Z damagedsoul $
*/
#ifndef SQLITE_OMIT_ANALYZE
#include "sqliteInt.h"

View File

@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the ATTACH and DETACH commands.
**
** $Id$
** $Id: attach.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -14,7 +14,7 @@
** systems that do not need this facility may omit it by recompiling
** the library with -DSQLITE_OMIT_AUTHORIZATION=1
**
** $Id$
** $Id: auth.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id$
** $Id: btree.c 3426 2007-03-21 20:19:37Z damagedsoul $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to

View File

@ -13,7 +13,7 @@
** subsystem. See comments in the source code for a detailed description
** of what each interface routine does.
**
** @(#) $Id$
** @(#) $Id: btree.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _BTREE_H_
#define _BTREE_H_

View File

@ -22,7 +22,7 @@
** COMMIT
** ROLLBACK
**
** $Id$
** $Id: build.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include <ctype.h>

View File

@ -13,7 +13,7 @@
** This file contains functions used to access the internal hash tables
** of user defined functions and collation sequences.
**
** $Id$
** $Id: callback.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -16,7 +16,7 @@
** separating it out, the code will be automatically omitted from
** static links that do not use it.
**
** $Id$
** $Id: complete.c 2779 2006-06-04 04:29:46Z damagedsoul $
*/
#include "sqliteInt.h"
#ifndef SQLITE_OMIT_COMPLETE

View File

@ -16,7 +16,7 @@
** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
** All other code has file scope.
**
** $Id$
** $Id: date.c 3426 2007-03-21 20:19:37Z damagedsoul $
**
** NOTES:
**

View File

@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** in order to generate code for DELETE FROM statements.
**
** $Id$
** $Id: delete.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id$
** $Id: expr.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include <ctype.h>

View File

@ -16,7 +16,7 @@
** sqliteRegisterBuildinFunctions() found at the bottom of the file.
** All other code has file scope.
**
** $Id$
** $Id: func.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include <ctype.h>

View File

@ -12,7 +12,7 @@
** This is the implementation of generic hash-tables
** used in SQLite.
**
** $Id$
** $Id: hash.c 2779 2006-06-04 04:29:46Z damagedsoul $
*/
#include "sqliteInt.h"
#include <assert.h>

View File

@ -12,7 +12,7 @@
** This is the header file for the generic hash-table implemenation
** used in SQLite.
**
** $Id$
** $Id: hash.h 2779 2006-06-04 04:29:46Z damagedsoul $
*/
#ifndef _SQLITE_HASH_H_
#define _SQLITE_HASH_H_

View File

@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle INSERT statements in SQLite.
**
** $Id$
** $Id: insert.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id$
** $Id: legacy.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id$
** $Id: main.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id$
** @(#) $Id: pager.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"

View File

@ -13,7 +13,7 @@
** subsystem. The page cache subsystem reads and writes a file a page
** at a time and provides a journal for rollback.
**
** @(#) $Id$
** @(#) $Id: pager.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _PAGER_H_

View File

@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
** $Id$
** $Id: pragma.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -13,7 +13,7 @@
** interface, and routines that contribute to loading the database schema
** from disk.
**
** $Id$
** $Id: prepare.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -15,7 +15,7 @@
** Random numbers are used by some of the database backends in order
** to generate random integer keys for tables or random filenames.
**
** $Id$
** $Id: random.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
** $Id$
** $Id: select.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -12,7 +12,7 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id$
** $Id: shell.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include <stdlib.h>
#include <string.h>

View File

@ -12,7 +12,7 @@
** This header file defines the interface that the SQLite library
** presents to client programs.
**
** @(#) $Id$
** @(#) $Id: sqlite3.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_

View File

@ -15,7 +15,7 @@
** as extensions by SQLite should #include this file instead of
** sqlite3.h.
**
** @(#) $Id$
** @(#) $Id: sqlite3ext.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _SQLITE3EXT_H_
#define _SQLITE3EXT_H_

View File

@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id$
** @(#) $Id: sqliteInt.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_

View File

@ -11,7 +11,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
** $Id$
** $Id: tclsqlite.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */

View File

@ -15,7 +15,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
** $Id$
** $Id: tokenize.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle UPDATE statements.
**
** $Id$
** $Id: update.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"

View File

@ -12,7 +12,7 @@
** This file contains routines used to translate between UTF-8,
** UTF-16, UTF-16BE, and UTF-16LE.
**
** $Id$
** $Id: utf.c 3426 2007-03-21 20:19:37Z damagedsoul $
**
** Notes on UTF-8:
**

View File

@ -14,7 +14,7 @@
** This file contains functions for allocating memory, comparing
** strings, and stuff like that.
**
** $Id$
** $Id: util.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -14,7 +14,7 @@
** Most of the code in this file may be omitted by defining the
** SQLITE_OMIT_VACUUM macro.
**
** $Id$
** $Id: vacuum.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "vdbeInt.h"

View File

@ -43,7 +43,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
** $Id$
** $Id: vdbe.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"
#include "os.h"

View File

@ -15,7 +15,7 @@
** or VDBE. The VDBE implements an abstract machine that runs a
** simple program to access and modify the underlying database.
**
** $Id$
** $Id: vdbe.h 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef _SQLITE_VDBE_H_
#define _SQLITE_VDBE_H_

View File

@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to help implement virtual tables.
**
** $Id$
** $Id: vtab.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#ifndef SQLITE_OMIT_VIRTUALTABLE
#include "sqliteInt.h"

View File

@ -16,7 +16,7 @@
** so is applicable. Because this module is responsible for selecting
** indices, you might also think of this module as the "query optimizer".
**
** $Id$
** $Id: where.c 3426 2007-03-21 20:19:37Z damagedsoul $
*/
#include "sqliteInt.h"