Skip to content

Instantly share code, notes, and snippets.

@manuels
Created November 6, 2014 21:35
Show Gist options
  • Save manuels/567bf4de17b52d61594e to your computer and use it in GitHub Desktop.
Save manuels/567bf4de17b52d61594e to your computer and use it in GitHub Desktop.
int apply(int (*func)(int), int x) {
return func(x);
}
#![crate_type = "lib"]
#![crate_name = "foo"]
extern crate libc;
/*
int apply()
int (*)(int) func [int (*)(int)]
int x
*/
#[link(name="cxx")]
extern "C" {
pub fn apply(func: extern fn(libc::c_int) -> libc::c_int, x: libc::c_int) -> libc::c_int;
}
extern crate libc;
extern crate foo;
extern fn double(x: libc::c_int) -> libc::c_int { 2*x }
fn main() {
unsafe { println!("{}", foo::apply(double, 2)) }
// assert!(foo::apply(double, 2) == 4)
}
gcc -c function_arg.c -o /tmp/libcxx.a
rustc -o /tmp/libfoo.rlib function_arg.rs
rustc -L /tmp/ function_arg_run.rs -o /tmp/main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment