Lely core libraries 2.3.4
io.c
Go to the documentation of this file.
1
24#include "io.h"
25
26#if LELY_NO_STDIO || (!_WIN32 && !defined(_POSIX_C_SOURCE))
27
28#include <lely/io2/sys/io.h>
29
30int
31io_init(void)
32{
33 return 0;
34}
35
36void
37io_fini(void)
38{
39}
40
41#endif // LELY_NO_STDIO || (!_WIN32 && !_POSIX_C_SOURCE)
This header file is part of the I/O library; it contains system-dependent I/O initialization/finaliza...
int io_init(void)
Initializes the I/O library and makes the I/O functions available for use.
Definition: io.c:31
void io_fini(void)
Finalizes the I/O library and terminates the availability of the I/O functions.
Definition: io.c:38
This is the internal header file of the Windows-specific I/O declarations.