diff options
| author | jakob <jakob@memeware.net> | 2017-06-03 19:00:07 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-06-03 19:00:07 -0400 |
| commit | 17b658ceadd08d693f23448c276958e2eea5970e (patch) | |
| tree | 8d0f62709646de856373a0ffa4fc2513f717f770 /src/io.h | |
| parent | 6adad1bfad91274aad030cf6167c1f19fb602d62 (diff) | |
Fully working repacker, no bugs related to the encoded output being larger than the buffer, and filenames are properly encoded.
Diffstat (limited to 'src/io.h')
| -rw-r--r-- | src/io.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -66,6 +66,9 @@ void stream_read(void *dest, struct stream *s, size_t n); by `src`. The stream's cursor is advanced appropriately. */ void stream_write(struct stream *s, void *src, size_t n); +/* Increases the length of `s` by `n` bytes. */ +void stream_expand(struct stream *s, size_t n); + /* Concatenates the contents of `src` onto `dst`. */ void stream_concat(struct stream *dst, struct stream *src, size_t n); |