diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h new file mode 100644 index 0000000..7a429a4 --- /dev/null +++ b/src/stream.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: LGPL-2.1-only */ + +/* Copyright (C) 2020 Gediminas Jakutis */ + +#ifndef ALGOS_IO_H_INCLUDED +#define ALGOS_IO_H_INCLUDED + +#include "defs.h" + +int stream_open(struct stream * const in); +int stream_close(struct stream * const in); +int stream_readfile(struct stream * const in); + +int direct_get_array(struct stream * const restrict in, ssize_t idx, struct entry_l * const data); +int direct_get_list(struct stream * const restrict in, ssize_t idx, struct entry_l * const data); + +int direct_put_array(struct stream * const restrict in, ssize_t idx, const struct entry_l * const data); +int direct_put_list(struct stream * const restrict in, ssize_t idx, const struct entry_l * const data); + +int stream_shallow_copy(struct stream const * const restrict src, struct stream * const dest); +#endif /* ALGOS_IO_H_INCLUDED */ |