Select the types of activity you want to include in your feed.
1#ifndef BASE64_H 2#define BASE64_H 3 4#include <stdint.h> 5#include <stddef.h> 6 7char *ant_base64_encode(const uint8_t *data, size_t len, size_t *out_len); 8uint8_t *ant_base64_decode(const char *data, size_t len, size_t *out_len); 9 10#endif