checked_cast 0.0.3

A small macro to deal with the libc typedef hell.
Documentation

A small macro to deal with the libc typedef hell.

Build Status

#![feature(phase)]
extern crate core;
#[phase(plugin)] extern crate checked_cast;

let foo: c_long = -1;
let bar: c_uint = checked_cast!(foo, c_uint).unwrap(); // panic