refresh
This commit is contained in:
parent
231acc648d
commit
5285563580
@ -7,7 +7,9 @@ void funkcia (int c, int *line_count) {
|
|||||||
putchar(c);
|
putchar(c);
|
||||||
} else if (isalpha(c)) {
|
} else if (isalpha(c)) {
|
||||||
putchar(islower(c) ? toupper(c) : tolower(c));
|
putchar(islower(c) ? toupper(c) : tolower(c));
|
||||||
}
|
} else if (isprint(c) || c == '\t') {
|
||||||
|
putchar(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
BIN
a1/program.exe
BIN
a1/program.exe
Binary file not shown.
Loading…
Reference in New Issue
Block a user