This commit is contained in:
Jakub Frankovič 2026-03-12 13:51:47 +01:00
parent 9b3b2b5f39
commit 9f313e864b
2 changed files with 2 additions and 2 deletions

View File

@ -3,4 +3,4 @@
char *translate(const char *phrase);
#endif
#endif

View File

@ -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, " ");