mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
9 lines
135 B
C
9 lines
135 B
C
module std::sort;
|
|
|
|
fn int cmp_int_ref(int* x, int* y) {
|
|
return *x - *y;
|
|
}
|
|
|
|
fn int cmp_int_value(int x, int y) {
|
|
return x - y;
|
|
} |