mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
io.reader: make read_all constants public (#20997)
This commit is contained in:
parent
96aa23ff35
commit
d6236e1052
1 changed files with 2 additions and 2 deletions
|
@ -29,8 +29,8 @@ mut:
|
|||
read(mut buf []u8) !int
|
||||
}
|
||||
|
||||
const read_all_len = 10 * 1024
|
||||
const read_all_grow_len = 1024
|
||||
pub const read_all_len = 10 * 1024
|
||||
pub const read_all_grow_len = 1024
|
||||
|
||||
// ReadAllConfig allows options to be passed for the behaviour
|
||||
// of read_all.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue