diff options
author | 2021-03-13 21:26:49 +0200 | |
---|---|---|
committer | 2021-03-13 21:26:49 +0200 | |
commit | c68444ff76eff88fbfa63a3ddbd6b9ce72337159 (patch) | |
tree | 90158ba6272fbb53c5df5852d3415493305c4deb /src/stream.h | |
parent | 4dcfe9c0a8b03915d93420d523d6bdc1884bd137 (diff) | |
download | algos-ld1-c68444ff76eff88fbfa63a3ddbd6b9ce72337159.tar.gz algos-ld1-c68444ff76eff88fbfa63a3ddbd6b9ce72337159.tar.bz2 algos-ld1-c68444ff76eff88fbfa63a3ddbd6b9ce72337159.zip |
complete core featureset with linked list files.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
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); |