June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -1,11 +1,11 @@
|
|||
file i, o;
|
||||
text s;
|
||||
|
||||
f_open(i, "input.txt", OPEN_READONLY, 0);
|
||||
f_open(o, "output.txt", OPEN_CREATE | OPEN_TRUNCATE | OPEN_WRITEONLY,
|
||||
i.open("input.txt", OPEN_READONLY, 0);
|
||||
o.open("output.txt", OPEN_CREATE | OPEN_TRUNCATE | OPEN_WRITEONLY,
|
||||
0644);
|
||||
|
||||
while (f_line(i, s) ^ -1) {
|
||||
f_text(o, s);
|
||||
f_byte(o, '\n');
|
||||
while (i.line(s) ^ -1) {
|
||||
o.text(s);
|
||||
o.byte('\n');
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue