mirror of
https://github.com/jeelabs/esp-link.git
synced 2026-03-03 07:54:00 +01:00
6 lines
128 B
C
6 lines
128 B
C
#ifndef BASE64_H
|
|
#define BASE64_H
|
|
|
|
int base64_decode(size_t in_len, const char *in, size_t out_len, unsigned char *out);
|
|
|
|
#endif |