mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 16:08:43 +00:00
11 lines
249 B
C
11 lines
249 B
C
#ifndef MLR_GLOBALS_H
|
|
#define MLR_GLOBALS_H
|
|
|
|
typedef struct _mlr_globals_t {
|
|
char* bargv0; // basename of argv0
|
|
char* ofmt;
|
|
} mlr_globals_t;
|
|
extern mlr_globals_t MLR_GLOBALS;
|
|
void mlr_global_init(char* argv0, char* ofmt);
|
|
|
|
#endif // MLR_GLOBALS_H
|