Start working on C port

This commit is contained in:
Anthony Wang 2022-04-18 21:10:19 -05:00
parent aff6510957
commit 530da23dfc
Signed by: a
GPG key ID: BC96B00AEC5F2D76
3 changed files with 8 additions and 0 deletions

7
cd.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
#include <sqlite3.h>
#include "segmenttree.h"
int main(int argc, char* argv[]) {
printf("Hello!");
}

0
segmenttree.c Normal file
View file

1
segmenttree.h Normal file
View file

@ -0,0 +1 @@
struct SegmentTree;