made work: count the number of words in a file_t*

This commit is contained in:
Odweta
2023-12-26 09:50:18 +01:00
parent cb04f9a87c
commit f1444de526
5 changed files with 110 additions and 17 deletions
+2
View File
@@ -34,4 +34,6 @@ void fileCreateEmpty(char* path); // create an empty file with the given name
void fileNumberLines(file_t* f); // prepend line numbers in front of each line in a file
int fileCountWords(file_t* f); // counts the number of words in a file
#endif