Files
libbase58/base58.h
2014-08-17 11:52:26 +00:00

11 lines
246 B
C

#ifndef LIBBASE58_H
#define LIBBASE58_H
#include <stdbool.h>
#include <string.h>
extern bool _blkmk_b58tobin(void *bin, size_t binsz, const char *b58, size_t b58sz);
extern int _blkmk_b58check(void *bin, size_t binsz, const char *b58);
#endif