create project skeleton

This commit is contained in:
2026-05-04 18:18:55 -05:00
parent e319980cf3
commit fdc5b699bd
5 changed files with 115 additions and 0 deletions

11
test/test.c Normal file
View File

@@ -0,0 +1,11 @@
#include "../include/lsort.h"
#include "stdio.h"
int main(void) {
int x = 5;
int y = 2;
printf("%d + %d = %d\n", x, y, add(x, y));
return 0;
}