mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-28 18:21:52 +00:00
10 lines
359 B
C
10 lines
359 B
C
#ifndef READERS_H
|
|
#define READERS_H
|
|
#include "input/reader.h"
|
|
|
|
reader_t* reader_csv_alloc(char rs, char fs, int allow_repeat_ifs);
|
|
reader_t* reader_dkvp_alloc(char rs, char fs, char ps, int allow_repeat_ifs);
|
|
reader_t* reader_nidx_alloc(char rs, char fs, int allow_repeat_ifs);
|
|
reader_t* reader_xtab_alloc(char ps, int allow_repeat_ips);
|
|
|
|
#endif // READERS_H
|