/** * @file wraplibsnark.hpp * @author Dennis Kuhnert * @date 2017 */ #ifdef __cplusplus extern "C" { #endif #include #include // entrypoint, wraps the whole process, probably should be removed later bool _run_libsnark(const uint8_t* A, const uint8_t* B, const uint8_t* C, const uint8_t* witness, int constraints, int variables); #ifdef __cplusplus } // extern "C" #endif