aboutsummaryrefslogtreecommitdiff
path: root/src/utf.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2004-05-08 08:23:19 +0000
committerdanielk1977 <danielk1977@noemail.net>2004-05-08 08:23:19 +0000
commit4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e (patch)
treee0a859d56472693c646655e438855735733df9a5 /src/utf.c
parent9b171277051d84f2ddb8b12a64a7a62b0be4d0e8 (diff)
downloadsqlite-4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e.tar.gz
sqlite-4adee20fcbeb358c32a8cd6cf237c3cb4ee0744e.zip
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
library links again. It doesn't work yet, due to changes in the btree layer calling convention. (CVS 1324) FossilOrigin-Name: 8af6474c49263ae26216dff9465b33f76b500cf4
Diffstat (limited to 'src/utf.c')
-rw-r--r--src/utf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utf.c b/src/utf.c
index d9c7e96d7..75a498779 100644
--- a/src/utf.c
+++ b/src/utf.c
@@ -12,7 +12,7 @@
** This file contains routines used to translate between UTF-8,
** UTF-16, UTF-16BE, and UTF-16LE.
**
-** $Id: utf.c,v 1.2 2004/05/06 23:37:53 danielk1977 Exp $
+** $Id: utf.c,v 1.3 2004/05/08 08:23:40 danielk1977 Exp $
**
** Notes on UTF-8:
**
@@ -491,3 +491,6 @@ void sqlite3utf16to16be(void *pData, int N){
utf16to16(pData, N, 1);
}
+
+
+