Created
November 6, 2014 21:35
-
-
Save manuels/567bf4de17b52d61594e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int apply(int (*func)(int), int x) { | |
return func(x); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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