1
0

pa04.h 241 B

1234567891011
  1. /*
  2. * Do not modify this file.
  3. */
  4. #ifndef PA04_H
  5. #define PA04_H
  6. #include <stdlib.h>
  7. int countLetter(char * file1, char * file2);
  8. int countString(char * file1, char * file2, char * str);
  9. int isPalindrome(char * file1, char * file2);
  10. #endif