mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 17:04:01 +00:00
8 lines
182 B
C
8 lines
182 B
C
#include "context.h"
|
|
|
|
void context_init(context_t* pctx, char* first_file_name) {
|
|
pctx->nr = 0;
|
|
pctx->fnr = 0;
|
|
pctx->filenum = 1;
|
|
pctx->filename = first_file_name;
|
|
}
|