mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-15 01:48:27 -07:00
10 lines
181 B
C
10 lines
181 B
C
#ifndef BASE64_H_GUARD
|
|
#define BASE64_H_GUARD
|
|
|
|
#include <stddef.h>
|
|
|
|
char* base64_encode(const void* buf, size_t size);
|
|
void* base64_decode(const char* s, size_t *data_len);
|
|
|
|
#endif
|