#ifndef ALGOS_IO_H_INCLUDED #define ALGOS_IO_H_INCLUDED #include struct stream { size_t n; size_t stride; int fd; int out; char *name; }; int stream_open(struct stream *in); int stream_close(struct stream *in); #endif /* ALGOS_IO_H_INCLUDED */