Laid groundwork for the parsing of words.txt file
This commit is contained in:
+14
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user