Skip to content

Instantly share code, notes, and snippets.

@dnaeon
Created June 25, 2015 13:44
Show Gist options
  • Save dnaeon/4b5d727ac2d079253840 to your computer and use it in GitHub Desktop.
Save dnaeon/4b5d727ac2d079253840 to your computer and use it in GitHub Desktop.
/* Example C header file for libtest */
...
#define LIB_VERSION 1
...
/* End of header file */
// Example Rust code
extern crate libc;
#[link(name = "libtest")]
extern {
static LIB_VERSION: libc::c_int;
}
fn main() {
println!("Version is {}", LIB_VERSION as i32);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment