rust/tests/target/extern.rs

59 lines
1.1 KiB
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
2015-09-21 13:02:45 -05:00
extern crate foo;
extern crate foo as bar;
extern "C" {
2015-09-21 13:02:45 -05:00
fn c_func(x: *mut *mut libc::c_void);
2017-06-11 23:01:41 -05:00
fn c_func(
x: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
y: YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY,
);
2015-09-21 13:02:45 -05:00
#[test123]
fn foo() -> uint64_t;
pub fn bar();
}
extern "C" {
2017-06-11 23:01:41 -05:00
fn DMR_GetDevice(
pHDev: *mut HDEV,
searchMode: DeviceSearchMode,
pSearchString: *const c_char,
devNr: c_uint,
wildcard: c_char,
) -> TDMR_ERROR;
2015-09-21 13:02:45 -05:00
fn quux() -> (); // Post comment
}
extern "Rust" {
static ext: u32;
// Some comment.
pub static mut var: SomeType;
}
2015-10-10 15:53:20 -05:00
extern "C" {
2017-06-11 23:01:41 -05:00
fn syscall(
number: libc::c_long, // comment 1
// comm 2
... // sup?
) -> libc::c_long;
2015-10-10 15:53:20 -05:00
fn foo(x: *const c_char, ...) -> libc::c_long;
}
extern "C" {
2017-06-11 23:01:41 -05:00
pub fn freopen(
filename: *const c_char,
mode: *const c_char,
mode2: *const c_char,
mode3: *const c_char,
file: *mut FILE,
) -> *mut FILE;
}
extern "C" {}