mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
9 lines
282 B
C
9 lines
282 B
C
#include <stdlib.h>
|
|
#include "lib/mlr_globals.h"
|
|
|
|
mlr_globals_t MLR_GLOBALS = { .argv0 = "mlr", .ofmt = NULL, .popts = NULL };
|
|
void mlr_global_init(char* argv0, char* ofmt, cli_opts_t* popts) {
|
|
MLR_GLOBALS.argv0 = argv0;
|
|
MLR_GLOBALS.ofmt = ofmt;
|
|
MLR_GLOBALS.popts = popts;
|
|
}
|