Add makefile

This commit is contained in:
Aidan Haas
2022-11-07 18:35:45 -05:00
committed by GitHub
parent ccf5273b44
commit 9926c34b38
5 changed files with 50 additions and 38 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
#include <stdlib.h>
#include <string.h>
#include <ncurses.h>
#include "utilities.h"
#include "typing_test.h"
int main() {
@@ -10,5 +11,5 @@ int main() {
words = fopen("words.txt", "r");
Word_array word_array;
parse_words_file(words, word_array);
parse_words_file(words, &word_array);
}