Initial commit; 2017 me stupidly didn't use free(), so that needs fixing.

Fixed memory issue and did some cleanup

Removed VS code trash
This commit is contained in:
2021-02-23 15:15:11 -05:00
parent 5749e24299
commit aba952c8a1
8 changed files with 298 additions and 150 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM gcc:8.4.0
WORKDIR /opt
COPY src/** /opt
RUN gcc -std=c11 -o connectfour connectfour.c file_utils.c gamelogic.c arghandler.c
CMD ["./connectfour"]