This commit is contained in:
Oleksandr Vyshniakov 2025-02-18 18:08:19 +01:00
parent 68155cdecf
commit ad0c9c3d17
2 changed files with 1 additions and 1 deletions

View File

@ -7,7 +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)) {
} else if (isprint(c) || c == '\t') {
putchar(c);
}
}

Binary file not shown.