Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardosm committed Nov 22, 2024
1 parent 3f8c3f7 commit 16c43eb
Show file tree
Hide file tree
Showing 51 changed files with 3,351 additions and 786 deletions.
382 changes: 312 additions & 70 deletions src/fuchsia/mod.rs

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions src/solid/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,9 @@ extern "C" {
arg2: *const c_void,
arg3: size_t,
arg4: size_t,
arg5: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
arg5: crate::Option<
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
>,
) -> *mut c_void;
pub fn calloc(arg1: size_t, arg2: size_t) -> *mut c_void;
pub fn div(arg1: c_int, arg2: c_int) -> div_t;
Expand All @@ -565,7 +567,9 @@ extern "C" {
arg1: *mut c_void,
arg2: size_t,
arg3: size_t,
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
arg4: crate::Option<
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
>,
);
pub fn rand() -> c_int;
pub fn realloc(arg1: *mut c_void, arg2: size_t) -> *mut c_void;
Expand Down Expand Up @@ -621,13 +625,17 @@ extern "C" {
arg1: *mut c_void,
arg2: size_t,
arg3: size_t,
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
arg4: crate::Option<
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
>,
) -> c_int;
pub fn mergesort(
arg1: *mut c_void,
arg2: size_t,
arg3: size_t,
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
arg4: crate::Option<
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
>,
) -> c_int;
pub fn radixsort(
arg1: *mut *const c_uchar,
Expand Down
Loading

0 comments on commit 16c43eb

Please sign in to comment.