Guest User

Untitled

a guest
Feb 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. int main()
  2. {
  3. FILE *wFile;
  4. char *checkFile;
  5. char *dictFile;
  6. char *persFile;
  7. char *currentWord = "Adaba";
  8. char *cWord;
  9. int fileSize;
  10. int scanChar;
  11. int i = 0;
  12. wFile = fopen("testing.txt","w");
  13. puts(currentWord);
  14. checkFile = fileToText("Gamecocks.txt");
  15. dictFile = fileToText("linux.words");
  16. persFile = fileToText("personal.txt");
  17.  
  18. toLowerWord(currentWord);
  19. //i = checkWord(checkFile, persFile);
  20. puts(currentWord);
  21. //fputs(checkFile, wFile);
  22.  
  23. fclose(wFile);
  24.  
  25. return 0;
  26. }
Add Comment
Please, Sign In to add comment