Compare commits

..

3 Commits

View File

@ -117,8 +117,6 @@ impl SSV {
Ok(())
}
/// # Get the configuration of the SSV library
/// Implement: SSV_LireConfig
pub fn get_config(&self) -> Result<(), Error> {
let mut buffer_ptr: *mut libc::c_void = ptr::null_mut();
let mut size: libc::size_t = 0;
@ -205,4 +203,9 @@ mod tests {
lib.get_config()?;
Ok(())
}
#[test]
fn test_ssv() {
assert_eq!("ssv", "ssv");
}
}