img-stream-enc/src/input.zig

11 lines
249 B
Zig
Raw Normal View History

2023-11-27 14:06:31 +05:00
const std = @import("std");
const util = @import("util.zig");
const threads = @import("threads.zig");
pub fn main_loop(f: std.fs.File, buffs: util.Buffers, thread_mgr: threads.ThreadManager) !void {
_ = thread_mgr;
_ = buffs;
_ = f;
}