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

View File

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

Binary file not shown.