changes
This commit is contained in:
parent
d55b76206f
commit
f4afeeecb0
@ -14,12 +14,13 @@ int main(){
|
|||||||
else if (c == '\n') {
|
else if (c == '\n') {
|
||||||
line_count++; // Zvýšte počítadlo riadkov na konce riadka
|
line_count++; // Zvýšte počítadlo riadkov na konce riadka
|
||||||
}
|
}
|
||||||
|
else if (c == '\t'){
|
||||||
|
putchar(c);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
else if (c < ' ' || c >= 127) {
|
else if (c < ' ' || c >= 127) {
|
||||||
continue; // Preskočiť značky
|
continue; // Preskočiť značky
|
||||||
}
|
}
|
||||||
if (c == '\t') {
|
|
||||||
putchar(c);
|
|
||||||
}
|
|
||||||
|
|
||||||
putchar(c); // Vypíš znak
|
putchar(c); // Vypíš znak
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user