added:
* file: small wrap over winapi for windows and stdio for posix * fs: small wrapper over stat * slice: slice macro type modified: * str and strview are now slices
This commit is contained in:
parent
bb5cce33f0
commit
c4d1ffe539
15 changed files with 451 additions and 88 deletions
2
http.c
2
http.c
|
|
@ -225,7 +225,7 @@ void resParseFields(http_response_t *ctx, str_istream_t *in) {
|
|||
}
|
||||
|
||||
istrSkip(in, 2); // skip \r\n
|
||||
} while(line.size > 2);
|
||||
} while(line.len > 2);
|
||||
}
|
||||
|
||||
// == HTTP CLIENT =============================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue