1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Get clean builds for MS tools. Add build examples for extension glommer (basexx.c)

Make sure extensions build for dynamic load and built into shell.

FossilOrigin-Name: da940d507e9e31a84daedede44a56f743198d7258a9e83892511fe8dd4c78d2b
This commit is contained in:
larrybr
2022-11-21 02:18:12 +00:00
parent 423003dca9
commit b5aaf0f285
4 changed files with 30 additions and 10 deletions

View File

@ -84,7 +84,7 @@ static const ubyte b64DigitValues[128] = {
41,42,43,44, 45,46,47,48, 49,50,51,ND, ND,ND,ND,ND
};
static const char b64Numerals[64]
static const char b64Numerals[64+1]
= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
#define BX_DV_PROTO(c) ((((ubyte)(c))<0x80)? b64DigitValues[c] : 0x80)