7#define WHO "decode_b64"
18static const char char64table[128] = {
19 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
20 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
21 -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
22 52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
23 -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
24 15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
25 -1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
26 41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
29#define char64enc(c) (((c) & 0x80) ? -1 : char64table[(c)])
36 char holdch[4] =
"???";
39 const unsigned char *
cp;
40 const unsigned char *cpnext;
49 for (j = 2; j >= 0; --j) {
50 holdch[j] = hold32 & 0xff;
54 if (
cp >= cpnext)
break;
66 hold32 = (hold32 << 6) | (c & 0x7f);
Error messages. If you translate these, I would urge you to keep the English version as well....
void decode_b64(const char *cpfrom, unsigned int n, stralloc *outdata)
const char * logmsg(const char *dir, unsigned long num, unsigned long listno, unsigned long subs, int done)