mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 07:59:37 +00:00
7 lines
183 B
C
7 lines
183 B
C
#ifndef FILE_READER_STDIO_H
|
|
#define FILE_READER_STDIO_H
|
|
|
|
void* file_reader_stdio_vopen(char* file_name);
|
|
void file_reader_stdio_vclose(void* pvhandle);
|
|
|
|
#endif // FILE_READER_STDIO_H
|