diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h index 6288d32..3617930 100644 --- a/src/stream.h +++ b/src/stream.h @@ -10,9 +10,14 @@ int stream_open(struct stream * const in); int stream_close(struct stream * const in); +/* uncached GET */ +struct entry_l *file_get_array(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); /* uncached blockmanip */ +int file_transfer(struct stream * const src, struct stream * const dest); int stream_copy_range(struct stream * const restrict src, struct stream * const restrict dest); /* misc */ |