8 lines
148 B
C
8 lines
148 B
C
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
#include <stddef.h>
|
|
|
|
size_t base64_decode(const char *in, size_t in_len, unsigned char *out);
|
|
|
|
#endif // BASE64_H
|