blob: cc7b0889bb18d99febb984b99d24c67e2f89717c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
This header file exposes certain functions that are meant to be used
for testing purposes only.
*/
#define STATIC static
#define LOG printf
#include "../src/solvers/tables.h"
size_t gendata_h48_derive(uint8_t, const void *, void *);
int parse_h48_solver(const char *, uint8_t [static 1], uint8_t [static 1]);
int64_t nissy_derivedata(const char *, const void *, void *);
|