Skip to content
Snippets Groups Projects
Commit 16373257 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

format

parent 8f5470fd
No related branches found
No related tags found
1 merge request!159Intense refactor
Pipeline #1177 failed
...@@ -6,11 +6,7 @@ use core::ptr; ...@@ -6,11 +6,7 @@ use core::ptr;
use platform::types::*; use platform::types::*;
#[no_mangle] #[no_mangle]
pub unsafe extern "C" fn bcmp( pub unsafe extern "C" fn bcmp(first: *const c_void, second: *const c_void, n: size_t) -> c_int {
first: *const c_void,
second: *const c_void,
n: size_t,
) -> c_int {
let first = first as *const c_char; let first = first as *const c_char;
let second = second as *const c_char; let second = second as *const c_char;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment