Laid groundwork for the parsing of words.txt file

This commit is contained in:
Aidan Haas
2022-11-07 14:00:21 -05:00
committed by GitHub
parent f3d4a24caa
commit ccf5273b44
3 changed files with 85 additions and 10 deletions
+14
View File
@@ -0,0 +1,14 @@
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ncurses.h>
#include "typing_test.h"
int main() {
FILE *words;
words = fopen("words.txt", "r");
Word_array word_array;
parse_words_file(words, word_array);
}