mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 07:30:43 +00:00
12 lines
182 B
C
12 lines
182 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;
|
|
|
|
#endif // CONTEXT_H
|