]> git.lizzy.rs Git - rust.git/blob - src/test/auxiliary/extern-crosscrate-source.rs
auto merge of #15421 : catharsis/rust/doc-ffi-minor-fixes, r=alexcrichton
[rust.git] / src / test / auxiliary / extern-crosscrate-source.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![crate_name="externcallback"]
12 #![crate_type = "lib"]
13
14 extern crate libc;
15
16 pub mod rustrt {
17     extern crate libc;
18
19     #[link(name = "rust_test_helpers")]
20     extern {
21         pub fn rust_dbg_call(cb: extern "C" fn(libc::uintptr_t) -> libc::uintptr_t,
22                              data: libc::uintptr_t)
23                              -> libc::uintptr_t;
24     }
25 }
26
27 pub fn fact(n: uint) -> uint {
28     unsafe {
29         println!("n = {}", n);
30         rustrt::rust_dbg_call(cb, n)
31     }
32 }
33
34 pub extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t {
35     if data == 1u {
36         data
37     } else {
38         fact(data - 1u) * data
39     }
40 }