You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
319 B
14 lines
319 B
9 years ago
|
#include <stdint.h>
|
||
|
#include "stdbool.h"
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "cnutilxx/main.h"
|
||
|
|
||
|
uint32_t convert_blob(const char *blob, size_t len, char *out) {
|
||
|
return cn_convert_blob(blob, len, out);
|
||
|
}
|
||
|
|
||
|
bool validate_address(const char *addr, size_t len) {
|
||
|
return cn_validate_address(addr, len);
|
||
|
}
|