aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-09-13 21:12:18 +0300
committereug-vs <eugene@eug-vs.xyz>2022-09-13 21:12:18 +0300
commit7a4d16e5ebd45b15b0c4925894c25a81c2e135c6 (patch)
tree6b26532d97128a6bd2df8c0c5976f7a74f8fd861 /src/main.c
downloadj1chess-7a4d16e5ebd45b15b0c4925894c25a81c2e135c6.tar.gz
chore: initialize project
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..e9902b2
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+#include "board.h"
+
+int main() {
+ printf("Size of board: %lu bytes\n", sizeof(Board));
+ return 0;
+}