Files
2026-06-26 00:30:13 +02:00

8 lines
166 B
C

#ifndef BASE64_HEADER_FILE
#define BASE64_HEADER_FILE
#include <stddef.h>
#include <stdint.h>
void base64_encode (const uint8_t *in, size_t ilen, char *out);
#endif