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