base64.h
1 #ifndef BASE64_H
2 #define BASE64_H
3 
4 extern "C" {
5 
6 uint32_t base64_encode (char* to, char* from, uint32_t len);
7 uint32_t base64_decode (char* to, char* from, uint32_t len);
8 
9 };
10 
11 #endif /* BASE64_H */