9 lines
164 B
C
9 lines
164 B
C
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
int base64_encode(const uint8_t *in, size_t in_len, char *out, size_t out_size);
|
|
|
|
#endif |