Structures to wrap C arrays. Here's a little example:
```Rust extern crate libc; extern crate c_vec;
use c_vec::{CVec, CSlice}; use std::ptr::Unique;
fn somefunc(cvec: *mut libc::cint, len: uint) { // safe wrapper, you can pass a destructor with newwithdtor() method let v = CVec::new(Unique::new(cvec), len); // unsafe wrapper with no destructor let s = CSlice::new(cvec, len);
println!("cvec: converted from c array: {}", v.as_slice());
println!("cslice: converted from c array: {}", s.as_mut_slice());
} ```
You can use it directly by adding this line to your Cargo.toml
file:
Rust
[dependencies]
c_vec = "^1.0.0"
Here's is the crates.io page for c_vec
.
This project is under the MIT and Apache 2.0 licenses. Please take a look at the license files for more information.