From c68444ff76eff88fbfa63a3ddbd6b9ce72337159 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Sat, 13 Mar 2021 21:26:49 +0200 Subject: complete core featureset with linked list files. Signed-off-by: Gediminas Jakutis --- src/stream.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stream.h') 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); -- cgit v1.2.3