mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-24 02:36:15 +00:00
11 lines
428 B
C
11 lines
428 B
C
// ================================================================
|
|
// Abstraction layer for stdio file-read logic.
|
|
// ================================================================
|
|
|
|
#ifndef FILE_READER_STDIO_H
|
|
#define FILE_READER_STDIO_H
|
|
|
|
void* file_reader_stdio_vopen(void* pvstate, char* prepipe, char* file_name);
|
|
void file_reader_stdio_vclose(void* pvstate, void* pvhandle, char* prepipe);
|
|
|
|
#endif // FILE_READER_STDIO_H
|