diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-27 13:35:19 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-27 13:35:19 +0000 |
commit | 3fd0a736bfa81524e7bba6152e5b868c5925aba8 (patch) | |
tree | a185ccc46aeaa11fda65ee85f6073ff6a147481e /src/sqliteInt.h | |
parent | 30ccda10064df7a13249d500c6acc2f789585677 (diff) | |
download | sqlite-3fd0a736bfa81524e7bba6152e5b868c5925aba8.tar.gz sqlite-3fd0a736bfa81524e7bba6152e5b868c5925aba8.zip |
A couple of test cases and fixes for blob literals. (CVS 1474)
FossilOrigin-Name: 6d552af67cf6fa6935373ba39de5c47ebf613eb9
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 4b4b825f9..270d38382 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.254 2004/05/27 01:53:56 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.255 2004/05/27 13:35:20 danielk1977 Exp $ */ #include "config.h" #include "sqlite.h" @@ -1351,3 +1351,4 @@ int sqlite3atoi64(const char*, i64*); void sqlite3Error(sqlite *, int, const char*,...); int sqlite3utfTranslate(const void *, int , u8 , void **, int *, u8); u8 sqlite3UtfReadBom(const void *zData, int nData); +char *sqlite3HexToBlob(const char *z); |