Max line length 4096
This commit is contained in:
parent
3c2e69d5d6
commit
0795836b61
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ pub fn main() anyerror!void {
|
||||||
try dumpInput(stdin, stdout);
|
try dumpInput(stdin, stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
const maxLineLength = 100;
|
const maxLineLength = 4096;
|
||||||
|
|
||||||
fn dumpInput(in: File, out: File) !void {
|
fn dumpInput(in: File, out: File) !void {
|
||||||
var buffer: [maxLineLength]u8 = undefined;
|
var buffer: [maxLineLength]u8 = undefined;
|
||||||
|
|
Loading…
Reference in a new issue