/** * @file wraplibsnark.hpp * @author Jacob Eberhardt * @date 2017 */ #ifdef __cplusplus extern "C" { #endif #include #include char* _sha256RoundConstraints(); char* _sha256RoundWitness(const uint8_t* input, int input_length); // External interface to free memory void _free_string(char const *str) { delete[] str; } #ifdef __cplusplus } // extern "C" #endif