From 9f313e864b95dabca2cbad1b91f8ff5253964967 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Frankovi=C4=8D?= Date: Thu, 12 Mar 2026 13:51:47 +0100 Subject: [PATCH] a2 --- a2/pig_latin.h | 2 +- a2/program.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, " ");