mirror of
https://github.com/logos-blockchain/logos-blockchain-circuits.git
synced 2026-05-20 08:19:31 +00:00
13 lines
339 B
Rust
13 lines
339 B
Rust
use lbc_types::ffi::{Bytes, Status, WitnessInput};
|
|
use std::ffi::c_char;
|
|
|
|
unsafe extern "C" {
|
|
pub fn pol_generate_witness(input: *const WitnessInput, output: *mut Bytes) -> Status;
|
|
|
|
pub fn pol_generate_witness_from_files(
|
|
dat: *const c_char,
|
|
inputs: *const c_char,
|
|
output: *const c_char,
|
|
) -> Status;
|
|
}
|