22 lines
421 B
C++
22 lines
421 B
C++
/**
|
|
* @file wraplibsnark.hpp
|
|
* @author Dennis Kuhnert <dennis.kuhnert@campus.tu-berlin.de>
|
|
* @date 2017
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool _run_libsnark(const int* A,
|
|
const int* B,
|
|
const int* C,
|
|
const int* witness,
|
|
int constraints,
|
|
int variables);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|