reader: at every iteration of read_all, skip comments and whitespace

This commit is contained in:
2026-02-11 07:58:34 +00:00
committed by oreodave
parent a49492b27f
commit 8e81e6f762

View File

@@ -112,6 +112,7 @@ read_err_t read_all(sys_t *sys, stream_t *stream, vec_t *out)
return err;
else
vec_append(out, &item, sizeof(item));
skip_comments_and_whitespace(stream);
}
return READ_ERR_OK;