miller/c/stream/stream.h
2015-05-22 08:17:05 -04:00

14 lines
428 B
C

#ifndef STREAM_H
#define STREAM_H
#include "containers/sllv.h"
#include "input/lrec_readers.h"
#include "mapping/mappers.h"
#include "output/lrec_writers.h"
// filenames must be null-terminated
int do_stream_chained(char** filenames, int use_file_reader_mmap,
lrec_reader_stdio_t* plrec_reader_stdio, lrec_reader_mmap_t* plrec_reader_mmap,
sllv_t* pmapper_list, lrec_writer_t* plrec_writer, char* ofmt);
#endif // STREAM_H