summaryrefslogtreecommitdiffstats
path: root/src/io.h
blob: d76f2b34073de097068ab9c0cd6c6b589142fe42 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ALGOS_IO_H_INCLUDED
#define ALGOS_IO_H_INCLUDED

#include "defs.h"

int stream_open(struct stream * const in, const struct settings * const s);
int stream_close(struct stream * const in);
int stream_get(struct stream *in, size_t idx, struct entry_l *data, int tag);
int stream_put(struct stream *in, size_t idx, struct entry_l *data, int tag);

#endif /* ALGOS_IO_H_INCLUDED */