From 1bcfe887515845678f8f648c6dfecffd01813b0f Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Wed, 19 Feb 2020 14:55:34 +0200 Subject: now with a special generation mode! Signed-off-by: Gediminas Jakutis --- src/io.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/io.h') diff --git a/src/io.h b/src/io.h index b7c0ebd..18e8e65 100644 --- a/src/io.h +++ b/src/io.h @@ -24,7 +24,9 @@ struct entry_l { uint64_t val; }; -int stream_open(struct stream *in); -int stream_close(struct stream *in); +int stream_open(struct stream * const in); +int stream_close(struct stream * const in); +int stream_get(struct stream *in, size_t idx, void *data); +int stream_put(struct stream *in, size_t idx, void *data); #endif /* ALGOS_IO_H_INCLUDED */ -- cgit v1.2.3