#ifndef BASE64_DECODE_H
#define BASE64_DECODE_H

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif

int base64decode(const char *in, size_t inLen, unsigned char *out, size_t *outLen);

#ifdef __cplusplus
}
#endif

#endif /* BASE64_DECODE_H */

