This commit is contained in:
Oleksandr Vyshniakov 2025-02-19 13:49:40 +01:00
parent 231acc648d
commit 5285563580
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ 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() {

Binary file not shown.