c_str Build Status

Old rust c_str module. It provides the ToCStr and FromCStr traits. It works just like the old one:

```Rust extern crate libc; extern crate c_str;

use c_str::{FromCStr, ToCStr};

fn somefunc(cstr: *const libc::cchar) { let s : String = FromCStr::fromcstr(cstr);

println!("converted from c string: {}", s);

}

fn someotherfunc(rstr: &str) { unsafe { somecfunc(rstr.withcstr(|s| { s }) } } ```

Usage

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

Rust [dependencies] c_str = "^1.0.0"

Here's is the crates.io page for c_str.

License

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