forked from eddyb-abandoned/rust-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.rs
48 lines (43 loc) · 1.08 KB
/
support.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
#[no_std];
extern "rust-intrinsic" {
fn offset<T>(dst: *T, offset: int) -> *T;
}
type c_int = i32;
#[no_mangle]
pub extern "C" fn memcpy(dest: *mut u8, src: *u8, n: int) {
unsafe {
let mut i = 0;
while (i < n) {
*(offset(dest as *u8, i) as *mut u8) = *(offset(src, i));
i += 1;
}
}
}
#[no_mangle]
pub extern "C" fn memmove(dest: *mut u8, src: *u8, n: int) {
unsafe {
if src < dest as *u8 { // copy from end
let mut i = n;
while (i != 0) {
i -= 1;
*(offset(dest as *u8, i) as *mut u8) = *(offset(src, i));
}
} else { // copy from beginning
let mut i = 0;
while (i < n) {
*(offset(dest as *u8, i) as *mut u8) = *(offset(src, i));
i += 1;
}
}
}
}
#[no_mangle]
pub extern "C" fn memset(s: *mut u8, c: c_int, n: int) {
unsafe {
let mut i = 0;
while (i < n) {
*(offset(s as *u8, i) as *mut u8) = c as u8;
i += 1;
}
}
}