This commit is contained in:
jaina heartles 2022-07-09 15:11:05 -07:00
parent a93039534c
commit b1d47ff607

View file

@ -22,7 +22,7 @@ const Encoding = enum {
chunked,
};
fn parse(alloc: std.mem.Allocator, reader: anytype) !Request {
pub fn parse(alloc: std.mem.Allocator, reader: anytype) !Request {
var request: Request = undefined;
try parseLine(alloc, &request, reader);