File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1+ 19.2.0 - file: add macros for standard i/o wrappers (ZPL_STDIO_IN, ...)
1219.1.1 - thread: return error values for POSIX calls
2319.1.0 - parser: introduce a new URI parser module
3419.0.4 - fix: zpl_buffer_copy_init missing macros (thanks Ed_ on Discord)
Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ typedef enum zpl_file_standard_type {
112112 ZPL_FILE_STANDARD_COUNT ,
113113} zpl_file_standard_type ;
114114
115+ #define ZPL_STDIO_IN zpl_file_get_standard(ZPL_FILE_STANDARD_INPUT)
116+ #define ZPL_STDIO_OUT zpl_file_get_standard(ZPL_FILE_STANDARD_OUTPUT)
117+ #define ZPL_STDIO_ERR zpl_file_get_standard(ZPL_FILE_STANDARD_ERROR)
118+
115119/**
116120 * Get standard file I/O.
117121 * @param std Check zpl_file_standard_type
You can’t perform that action at this time.
0 commit comments