sp/base32.h

10 行
152 B
C

#ifndef BASE32_H
#define BASE32_H
#include <stdlib.h>
#include <string.h>
unsigned char *base32_decode(const char *encoded, size_t *out_len);
#endif