# So I am parsing a file, and I only care about the first 15 bytes of each line. I would like to not write the rest of the line, but i would like to consume it so i can move to the next line. Is there a way to do that?
# fn do_my_thing( reader: std.io.AnyReader, buf: []u8, ) !?[]const u8 { const read = try reader.read(buf); if (read == 0) return null; if (read == buf.len) try reader.skipUntilDelimiterOrEof('\n'); return buf; }