| OLD | NEW |
| 1 /* | 1 /* |
| 2 ** 2001 September 15 | 2 ** 2001 September 15 |
| 3 ** | 3 ** |
| 4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
| 5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
| 6 ** | 6 ** |
| 7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
| 8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
| 9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
| 10 ** | 10 ** |
| (...skipping 3444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3455 | 3455 |
| 3456 #if defined(SQLITE_TEST) | 3456 #if defined(SQLITE_TEST) |
| 3457 const char *sqlite3ErrName(int); | 3457 const char *sqlite3ErrName(int); |
| 3458 #endif | 3458 #endif |
| 3459 | 3459 |
| 3460 const char *sqlite3ErrStr(int); | 3460 const char *sqlite3ErrStr(int); |
| 3461 int sqlite3ReadSchema(Parse *pParse); | 3461 int sqlite3ReadSchema(Parse *pParse); |
| 3462 CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int); | 3462 CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int); |
| 3463 CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName); | 3463 CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName); |
| 3464 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr); | 3464 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr); |
| 3465 Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr*, const Token*); | 3465 Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr*, const Token*, int); |
| 3466 Expr *sqlite3ExprAddCollateString(Parse*,Expr*,const char*); | 3466 Expr *sqlite3ExprAddCollateString(Parse*,Expr*,const char*); |
| 3467 Expr *sqlite3ExprSkipCollate(Expr*); | 3467 Expr *sqlite3ExprSkipCollate(Expr*); |
| 3468 int sqlite3CheckCollSeq(Parse *, CollSeq *); | 3468 int sqlite3CheckCollSeq(Parse *, CollSeq *); |
| 3469 int sqlite3CheckObjectName(Parse *, const char *); | 3469 int sqlite3CheckObjectName(Parse *, const char *); |
| 3470 void sqlite3VdbeSetChanges(sqlite3 *, int); | 3470 void sqlite3VdbeSetChanges(sqlite3 *, int); |
| 3471 int sqlite3AddInt64(i64*,i64); | 3471 int sqlite3AddInt64(i64*,i64); |
| 3472 int sqlite3SubInt64(i64*,i64); | 3472 int sqlite3SubInt64(i64*,i64); |
| 3473 int sqlite3MulInt64(i64*,i64); | 3473 int sqlite3MulInt64(i64*,i64); |
| 3474 int sqlite3AbsInt32(int); | 3474 int sqlite3AbsInt32(int); |
| 3475 #ifdef SQLITE_ENABLE_8_3_NAMES | 3475 #ifdef SQLITE_ENABLE_8_3_NAMES |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3816 | 3816 |
| 3817 /* | 3817 /* |
| 3818 ** Threading interface | 3818 ** Threading interface |
| 3819 */ | 3819 */ |
| 3820 #if SQLITE_MAX_WORKER_THREADS>0 | 3820 #if SQLITE_MAX_WORKER_THREADS>0 |
| 3821 int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); | 3821 int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); |
| 3822 int sqlite3ThreadJoin(SQLiteThread*, void**); | 3822 int sqlite3ThreadJoin(SQLiteThread*, void**); |
| 3823 #endif | 3823 #endif |
| 3824 | 3824 |
| 3825 #endif /* _SQLITEINT_H_ */ | 3825 #endif /* _SQLITEINT_H_ */ |
| OLD | NEW |