forked from rust-lang/rustfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextern.rs
69 lines (53 loc) · 1.18 KB
/
extern.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// rustfmt-normalize_comments: true
extern crate foo as bar;
extern crate foo;
extern crate chrono;
extern crate dotenv;
extern crate futures;
extern crate bar;
extern crate foo;
extern "C" {
fn c_func(x: *mut *mut libc::c_void);
fn c_func(
x: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
y: YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY,
);
#[test123]
fn foo() -> uint64_t;
pub fn bar();
}
extern "C" {
fn DMR_GetDevice(
pHDev: *mut HDEV,
searchMode: DeviceSearchMode,
pSearchString: *const c_char,
devNr: c_uint,
wildcard: c_char,
) -> TDMR_ERROR;
fn quux() -> (); // Post comment
pub type Foo;
type Bar;
}
extern "Rust" {
static ext: u32;
// Some comment.
pub static mut var: SomeType;
}
extern "C" {
fn syscall(
number: libc::c_long, // comment 1
// comm 2
... // sup?
) -> libc::c_long;
fn foo(x: *const c_char, ...) -> libc::c_long;
}
extern "C" {
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" {}