2016-01-06 05:40:25 -08:00
|
|
|
// These functions are provided when not linking against libc because LLVM
|
|
|
|
// sometimes generates code that calls them.
|
|
|
|
|
2016-01-25 16:06:19 -08:00
|
|
|
export fn memset(dest: &u8, c: u8, n: isize) -> &u8 {
|
2016-01-13 17:15:51 -08:00
|
|
|
var index : @typeof(n) = 0;
|
2016-01-06 05:40:25 -08:00
|
|
|
while (index != n) {
|
|
|
|
dest[index] = c;
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2016-01-25 16:06:19 -08:00
|
|
|
export fn memcpy(noalias dest: &u8, noalias src: &const u8, n: isize) -> &u8 {
|
2016-01-13 17:15:51 -08:00
|
|
|
var index : @typeof(n) = 0;
|
2016-01-06 05:40:25 -08:00
|
|
|
while (index != n) {
|
|
|
|
dest[index] = src[index];
|
|
|
|
index += 1;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|