mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-19 01:15:21 +00:00
11 lines
398 B
C
11 lines
398 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* file_name);
|
|
void file_reader_stdio_vclose(void* pvstate, void* pvhandle);
|
|
|
|
#endif // FILE_READER_STDIO_H
|