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 && defined(_POSIX_C_SOURCE)
27
28#include <lely/io2/sys/io.h>
29
30int
32{
33 // POSIX platforms do not require initialization or finalization.
34 return 0;
35}
36
37void
39{
40 // POSIX platforms do not require initialization or finalization.
41}
42
43#endif // !LELY_NO_STDIO && _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.