Files
meshcore-wch/User/lib/base64.h
2025-12-30 08:04:26 +01: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