sp/base32.h

10 行
152 B
C
Raw 通常表示 履歴

2024-02-01 16:01:25 +09:00
#ifndef BASE32_H
#define BASE32_H
#include <stdlib.h>
#include <string.h>
unsigned char *base32_decode(const char *encoded, size_t *out_len);
#endif