18 lines
265 B
C
18 lines
265 B
C
|
|
#include <stdint.h>
|
|
|
|
#include <defines.h>
|
|
|
|
#include <expr.h>
|
|
|
|
struct cmdln_flags;
|
|
struct simplifications;
|
|
struct row;
|
|
|
|
void print(
|
|
const struct cmdln_flags* flags,
|
|
const struct simplifications* simps,
|
|
const struct row* row,
|
|
uint16_t truthtable);
|
|
|
|
|