diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-05-06 23:37:52 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-05-06 23:37:52 +0000 |
commit | 998b56c351e56cb9455d667b740ec0c6ead4b48d (patch) | |
tree | d3c4445cca005fbac6943eec6983bc317b7626ac /src/sqliteInt.h | |
parent | 23e11cab7dd108dd197e981fd0e969ace130d61a (diff) | |
download | sqlite-998b56c351e56cb9455d667b740ec0c6ead4b48d.tar.gz sqlite-998b56c351e56cb9455d667b740ec0c6ead4b48d.zip |
Add code to convert between the various supported unicode encoding schemes.
Untested at this point. (CVS 1315)
FossilOrigin-Name: 71260ff7f7030f56c292b43f83a213c65c9a184e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c3e3de6c0..abf3d8436 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.221 2004/04/26 14:10:22 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.222 2004/05/06 23:37:53 danielk1977 Exp $ */ #include "config.h" #include "sqlite.h" @@ -1268,3 +1268,10 @@ int sqliteFixTriggerStep(DbFixer*, TriggerStep*); double sqliteAtoF(const char *z, const char **); char *sqlite_snprintf(int,char*,const char*,...); int sqliteFitsIn32Bits(const char *); + +unsigned char *sqlite3utf16to8(const void *pData, int N); +void *sqlite3utf8to16be(const unsigned char *pIn, int N); +void *sqlite3utf8to16le(const unsigned char *pIn, int N); +void sqlite3utf16to16le(void *pData, int N); +void sqlite3utf16to16be(void *pData, int N); + |