mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 07:30:43 +00:00
13 lines
360 B
C
13 lines
360 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"
|
|
|
|
// The filenames array must be null-terminated
|
|
int do_stream_chained(char** filenames, lrec_reader_t* plrec_reader, sllv_t* pmapper_list,
|
|
lrec_writer_t* plrec_writer, char* ofmt);
|
|
|
|
#endif // STREAM_H
|