diff options
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c index 637782d38..bdfe54aa6 100644 --- a/src/util.c +++ b/src/util.c @@ -14,7 +14,7 @@ ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id: util.c,v 1.97 2004/06/06 09:44:05 danielk1977 Exp $ +** $Id: util.c,v 1.98 2004/06/06 12:41:50 danielk1977 Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -917,7 +917,7 @@ int sqlite3SortCompare(const char *a, const char *b){ ** UCS character. This only works right if z points to a well-formed ** UTF-8 string. */ -static int sqlite3ReadUtf8(const unsigned char *z){ +int sqlite3ReadUtf8(const unsigned char *z){ int c; static const int initVal[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, |