diff options
Diffstat (limited to 'core/io/base64.h')
-rw-r--r-- | core/io/base64.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/io/base64.h b/core/io/base64.h new file mode 100644 index 0000000000..b70b387983 --- /dev/null +++ b/core/io/base64.h @@ -0,0 +1,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 */ |