Skip to content

Commit 16c43eb

Browse files
committed
fmt
1 parent 3f8c3f7 commit 16c43eb

File tree

51 files changed

+3351
-786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+3351
-786
lines changed

src/fuchsia/mod.rs

+312-70
Large diffs are not rendered by default.

src/solid/mod.rs

+12-4
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,9 @@ extern "C" {
551551
arg2: *const c_void,
552552
arg3: size_t,
553553
arg4: size_t,
554-
arg5: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
554+
arg5: crate::Option<
555+
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
556+
>,
555557
) -> *mut c_void;
556558
pub fn calloc(arg1: size_t, arg2: size_t) -> *mut c_void;
557559
pub fn div(arg1: c_int, arg2: c_int) -> div_t;
@@ -565,7 +567,9 @@ extern "C" {
565567
arg1: *mut c_void,
566568
arg2: size_t,
567569
arg3: size_t,
568-
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
570+
arg4: crate::Option<
571+
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
572+
>,
569573
);
570574
pub fn rand() -> c_int;
571575
pub fn realloc(arg1: *mut c_void, arg2: size_t) -> *mut c_void;
@@ -621,13 +625,17 @@ extern "C" {
621625
arg1: *mut c_void,
622626
arg2: size_t,
623627
arg3: size_t,
624-
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
628+
arg4: crate::Option<
629+
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
630+
>,
625631
) -> c_int;
626632
pub fn mergesort(
627633
arg1: *mut c_void,
628634
arg2: size_t,
629635
arg3: size_t,
630-
arg4: crate::Option<unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int>,
636+
arg4: crate::Option<
637+
unsafe extern "C" fn(arg1: *const c_void, arg2: *const c_void) -> c_int,
638+
>,
631639
) -> c_int;
632640
pub fn radixsort(
633641
arg1: *mut *const c_uchar,

0 commit comments

Comments
 (0)