21 stable releases

Uses old Rust 2015

2.0.0 Sep 25, 2020
1.3.3 May 1, 2019
1.3.2 Aug 2, 2018
1.3.1 Jun 16, 2018
1.0.10 Mar 25, 2015

#523 in Data structures

Download history 2110/week @ 2022-12-03 2479/week @ 2022-12-10 2022/week @ 2022-12-17 1262/week @ 2022-12-24 1153/week @ 2022-12-31 2026/week @ 2023-01-07 1715/week @ 2023-01-14 2721/week @ 2023-01-21 2369/week @ 2023-01-28 1994/week @ 2023-02-04 1947/week @ 2023-02-11 3124/week @ 2023-02-18 2253/week @ 2023-02-25 2404/week @ 2023-03-04 2144/week @ 2023-03-11 1766/week @ 2023-03-18

8,937 downloads per month
Used in 78 crates (8 directly)

Apache-2.0/MIT

33KB
493 lines

c_vec Build Status

Structures to wrap C arrays. Here's a little example:

extern crate libc;
extern crate c_vec;

use c_vec::{CVec, CSlice};

fn some_func(cvec: *mut libc::c_int, len: libc::c_uint) {
    // safe wrapper, you can pass a destructor with new_with_dtor() method
    let v = unsafe { CVec::new(cvec, len as usize) };
    // unsafe wrapper with no destructor
    let mut s = unsafe { CSlice::new(cvec, len as usize) };

    println!("cvec:   converted from c array: {:?}", v.as_ref());
    println!("cslice: converted from c array: {:?}", s.as_mut());
}

Usage

You can use it directly by adding this line to your Cargo.toml file:

[dependencies]
c_vec = "^1.0.0"

Here's the crates.io page for c_vec.

License

This project is under the MIT and Apache 2.0 licenses. Please take a look at the license files for more information.

No runtime deps