Files
meshcore-wch/User/lib/base64.h
2025-12-22 23:02:29 +01:00

8 lines
165 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