experimental support for base64 encoded binary data

This commit is contained in:
leitner
2002-07-08 20:57:42 +00:00
parent bd31d2568b
commit 7589c81061
17 changed files with 239 additions and 32 deletions

6
bstrlen.c Normal file
View File

@@ -0,0 +1,6 @@
#include "bstr.h"
#include "uint32.h"
int bstrlen(const char* a) {
if (*a) return strlen(a); else return uint32_read(a+1);
}