diff --git a/a2/pig_latin.h b/a2/pig_latin.h index af0fb0e..793deb0 100644 --- a/a2/pig_latin.h +++ b/a2/pig_latin.h @@ -3,4 +3,4 @@ char *translate(const char *phrase); -#endif +#endif \ No newline at end of file diff --git a/a2/program.c b/a2/program.c index 2145cf7..5bc41fc 100644 --- a/a2/program.c +++ b/a2/program.c @@ -55,7 +55,7 @@ char *translate(const char *phrase) { char *copy = malloc(plen + 1); strcpy(copy, phrase); - + char word_buf[512]; int first = 1; char *token = strtok(copy, " ");