diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h index 3617930..8d1f789 100644 --- a/src/stream.h +++ b/src/stream.h @@ -12,9 +12,11 @@ int stream_close(struct stream * const in); /* uncached GET */ struct entry_l *file_get_array(struct stream * const in, struct entry_l * const store); +struct entry_l *file_get_list(struct stream * const in, struct entry_l * const store); /* uncached PUT */ int file_put_array(struct stream * const in, const struct entry_l * const data); +int file_put_list(struct stream * const restrict in, const struct entry_l * const node); /* uncached blockmanip */ int file_transfer(struct stream * const src, struct stream * const dest); |