#[no_mangle]
pub unsafe extern "C" fn verilization_parse(
nfiles: usize,
files: *const *const APIString,
result: *mut APIResult<Verilization>,
)
Expand description
Parses verilization source files.
This function accepts an C-style array of strings. These strings contain the content of the files to be parsed.
A success result should be released using verilization_destroy
.
An error result should be released using verilization_mem_free.