lib: drop snake_case from io/types/bufio/net/os exports

This commit is contained in:
2026-05-11 14:15:53 +09:00
parent 2c33228b7e
commit 2918013c1a
11 changed files with 37 additions and 37 deletions

View File

@@ -15,14 +15,14 @@ type stream = struct {
def eof: i32 = -1;
def closed: i32 = -2;
export fn stream_read(s: *stream, buf: []u8) i32 = {
export fn read(s: *stream, buf: []u8) i32 = {
return s.read(s, buf);
};
export fn stream_write(s: *stream, buf: []u8) i32 = {
export fn write(s: *stream, buf: []u8) i32 = {
return s.write(s, buf);
};
export fn stream_close(s: *stream) i32 = {
export fn close(s: *stream) i32 = {
return s.close(s);
};