mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 08:53:55 +00:00
14 lines
428 B
C
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
|