miller/c/stream/stream.h
2016-04-06 22:27:04 -04:00

13 lines
385 B
C

#ifndef STREAM_H
#define STREAM_H
#include "containers/slls.h"
#include "containers/sllv.h"
#include "input/lrec_readers.h"
#include "mapping/mappers.h"
#include "output/lrec_writers.h"
int do_stream_chained(char* prepipe, slls_t* filenames, lrec_reader_t* plrec_reader, sllv_t* pmapper_list,
lrec_writer_t* plrec_writer, char* ofmt, long long nr_progress_mod);
#endif // STREAM_H