This commit is contained in:
2025-09-07 16:02:22 +02:00
commit 627acef32c
145 changed files with 74048 additions and 0 deletions

7
User/lib/base64.h Normal file
View File

@@ -0,0 +1,7 @@
#ifdef B64_HEADER
#define B64_HEADER
#include <stddef.h>
int base64_encode(const uint8_t *in, size_t ilen, char *out);
#endif