Move int sort function to lib

This commit is contained in:
Bill Rossi 2024-12-01 00:14:56 -05:00
parent 4998077a48
commit 91fb1b03cc
2 changed files with 8 additions and 6 deletions

View File

@ -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;

View File

@ -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;
}