1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/lib/wraplibsnark.hpp
2017-02-07 11:53:42 +01:00

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