base64.h 128 B

123456
  1. #ifndef BASE64_H
  2. #define BASE64_H
  3. int base64_decode(size_t in_len, const char *in, size_t out_len, unsigned char *out);
  4. #endif