recorder/base64.h

10 lines
181 B
C
Raw Normal View History

#ifndef BASE64_H_GUARD
#define BASE64_H_GUARD
2015-08-14 09:40:35 -07:00
#include <stddef.h>
2015-08-14 09:40:35 -07:00
char* base64_encode(const void* buf, size_t size);
void* base64_decode(const char* s, size_t *data_len);
2015-08-14 09:40:35 -07:00
#endif