mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-20 18:10:07 +00:00
16 lines
294 B
C
16 lines
294 B
C
#ifndef CONTEXT_H
|
|
#define CONTEXT_H
|
|
|
|
// xxx cmt
|
|
typedef struct _context_t {
|
|
long long nr;
|
|
long long fnr;
|
|
int filenum;
|
|
char* filename;
|
|
} context_t;
|
|
|
|
void context_init(context_t* pctx, char* first_file_name);
|
|
|
|
void context_print(context_t* pctx, char* indent);
|
|
|
|
#endif // CONTEXT_H
|