slcl/base64.h

10 lines
176 B
C
Raw Permalink Normal View History

2023-01-09 01:22:54 +01:00
#ifndef BASE64_H
#define BASE64_H
#include <stddef.h>
char *base64_encode(const void *buf, size_t n);
void *base64_decode(const char *b64, size_t *n);
#endif /* BASE64_H */