MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at type-hints-typescript 10 lines 234 B view raw
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