1#ifndef MATCHA_BASE64WRAP_H 2#define MATCHA_BASE64WRAP_H 3 4#include <stddef.h> 5 6char* wrap_base64(const char* data, size_t len, size_t* out_len); 7 8#endif