diff options
author | 2021-03-10 15:40:52 +0200 | |
---|---|---|
committer | 2021-03-10 15:40:52 +0200 | |
commit | 4dcfe9c0a8b03915d93420d523d6bdc1884bd137 (patch) | |
tree | 603a0874ce026aabe2bfca79b9f63ef8fbe47274 /src/stream.h | |
parent | b36a641c699dcd21e82aaa73971f9744dac61aa1 (diff) | |
download | algos-ld1-4dcfe9c0a8b03915d93420d523d6bdc1884bd137.tar.gz algos-ld1-4dcfe9c0a8b03915d93420d523d6bdc1884bd137.tar.bz2 algos-ld1-4dcfe9c0a8b03915d93420d523d6bdc1884bd137.zip |
now with uncached arrays!
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
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 */ |