#ifndef BASE64_ENCODE_H
#define BASE64_ENCODE_H

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

int base64encode(const void *data_buf, size_t dataLength, char *result, size_t resultSize);

#ifdef __cplusplus
} // extern "C"

#endif
#endif // BASE64_ENCODE_H
