*** empty log message ***
This commit is contained in:
parent
56d4bba759
commit
59d623dc66
|
@ -11,7 +11,11 @@ int main(int, char*[])
|
||||||
}
|
}
|
||||||
while(!feof(file))
|
while(!feof(file))
|
||||||
{
|
{
|
||||||
putc(fgetc(file), stdout);
|
int ch = fgetc(file);
|
||||||
|
if(ch != EOF)
|
||||||
|
{
|
||||||
|
putc(ch, stdout);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue