create project skeleton
This commit is contained in:
11
test/test.c
Normal file
11
test/test.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user