refresh
This commit is contained in:
parent
68155cdecf
commit
ad0c9c3d17
@ -7,7 +7,7 @@ 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)) {
|
} else if (isprint(c) || c == '\t') {
|
||||||
putchar(c);
|
putchar(c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
BIN
a1/program.exe
BIN
a1/program.exe
Binary file not shown.
Loading…
Reference in New Issue
Block a user