mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-21 02:23:20 +00:00
28 lines
709 B
C
28 lines
709 B
C
#ifndef MULTI_OUT_H
|
|
#define MULTI_OUT_H
|
|
|
|
#include <stdio.h>
|
|
#include "containers/lhmsv.h"
|
|
#include "output/file_output_mode.h"
|
|
|
|
// ----------------------------------------------------------------
|
|
// This is the value struct for the hashmap:
|
|
typedef struct _fp_and_flag_t {
|
|
FILE* output_stream;
|
|
int is_popen;
|
|
} fp_and_flag_t;
|
|
|
|
typedef struct _multi_out_t {
|
|
lhmsv_t* pnames_to_fps;
|
|
} multi_out_t;
|
|
|
|
// ----------------------------------------------------------------
|
|
multi_out_t* multi_out_alloc();
|
|
|
|
void multi_out_close(multi_out_t* pmo);
|
|
|
|
void multi_out_free(multi_out_t* pmo);
|
|
|
|
FILE* multi_out_get(multi_out_t* pmo, char* filename_or_command, file_output_mode_t file_output_mode);
|
|
|
|
#endif // MULTI_OUT_H
|