Move int sort function to lib
This commit is contained in:
parent
4998077a48
commit
91fb1b03cc
@ -4,10 +4,6 @@
|
||||
|
||||
#include "../../lib/aoc.h"
|
||||
|
||||
int sort(const void *a, const void *b) {
|
||||
return *(int*) a - *(int*) b;
|
||||
}
|
||||
|
||||
int main() {
|
||||
char *line;
|
||||
|
||||
@ -23,8 +19,8 @@ int main() {
|
||||
index++;
|
||||
}
|
||||
|
||||
qsort(left, 1000, sizeof(int), sort);
|
||||
qsort(right, 1000, sizeof(int), sort);
|
||||
qsort(left, 1000, sizeof(int), aoc_sort_int);
|
||||
qsort(right, 1000, sizeof(int), aoc_sort_int);
|
||||
|
||||
int sum = 0;
|
||||
|
||||
|
@ -53,3 +53,9 @@ void aoc_free(void) {
|
||||
free(input_buffer);
|
||||
free(read_line_buffer);
|
||||
}
|
||||
|
||||
|
||||
int aoc_sort_int(const void *a, const void *b) {
|
||||
return *(int*) a - *(int*) b;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user