diff --git a/a1/program.c b/a1/program.c index 052a19e..2a08579 100644 --- a/a1/program.c +++ b/a1/program.c @@ -7,9 +7,7 @@ void funkcia (int c, int *line_count) { putchar(c); } else if (isalpha(c)) { putchar(islower(c) ? toupper(c) : tolower(c)); - } else if (isprint(c) || c == '\t') { - putchar(c); - } + } } int main() { diff --git a/a1/program.exe b/a1/program.exe index 269c849..fc8fc57 100644 Binary files a/a1/program.exe and b/a1/program.exe differ