| 1234567891011 |
- /*
- * Do not modify this file.
- */
- #ifndef PA04_H
- #define PA04_H
- #include <stdlib.h>
- int countLetter(char * file1, char * file2);
- int countString(char * file1, char * file2, char * str);
- int isPalindrome(char * file1, char * file2);
- #endif
|