This commit is contained in:
Kozar 2024-02-21 18:21:04 +01:00
parent 76e74118e5
commit 9d68d38748

View File

@ -14,7 +14,10 @@ int main(){
else if (c == '\n') {
line_count++; // Zvýšte počítadlo riadkov na konce riadka
}
else if (c < ' ' || c >= 127 || c == '\t') {
else if (c == '\t'){
putchar(c);
}
else if (c < ' ' || c >= 127) {
continue; // Preskočiť značky
}