still wip

This commit is contained in:
2025-12-22 23:02:29 +01:00
parent 627acef32c
commit a48ef9d5e0
60 changed files with 6993 additions and 4939 deletions

View File

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