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