diff options
author | drh <drh@noemail.net> | 2018-01-08 20:04:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-01-08 20:04:57 +0000 |
commit | 91694dbdd2e9d30c79153922310fe52c7a894d31 (patch) | |
tree | ee5b70fac4c8527247f5e2f4738350deb9dd5737 /ext/misc/normalize.c | |
parent | d19866bb98c548049757d4e54efda009badd655c (diff) | |
download | sqlite-91694dbdd2e9d30c79153922310fe52c7a894d31.tar.gz sqlite-91694dbdd2e9d30c79153922310fe52c7a894d31.zip |
Test cases for sqlite3_normalize().
FossilOrigin-Name: 658f42257d56a3562dfa8e55023c6e497f55c565cd751d942de3a9e0cb2fa708
Diffstat (limited to 'ext/misc/normalize.c')
-rw-r--r-- | ext/misc/normalize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/misc/normalize.c b/ext/misc/normalize.c index a3c00210f..fd656f130 100644 --- a/ext/misc/normalize.c +++ b/ext/misc/normalize.c @@ -130,7 +130,7 @@ static const unsigned char aiClass[] = { ** handle case conversions for the UTF character set since the tables ** involved are nearly as big or bigger than SQLite itself. */ -const unsigned char sqlite3UpperToLower[] = { +static const unsigned char sqlite3UpperToLower[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, @@ -176,7 +176,7 @@ const unsigned char sqlite3UpperToLower[] = { ** non-ASCII UTF character. Hence the test for whether or not a character is ** part of an identifier is 0x46. */ -const unsigned char sqlite3CtypeMap[256] = { +static const unsigned char sqlite3CtypeMap[256] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00..07 ........ */ 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, /* 08..0f ........ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 10..17 ........ */ |