8 lines
151 B
Zig
8 lines
151 B
Zig
const std = @import("std");
|
|
|
|
const FileOffsetReader = struct {
|
|
file: std.fs.File,
|
|
|
|
pub fn any(self: *FileOffsetReader) !std.io.AnyReader {}
|
|
};
|