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 
30 int
31 io_init(void)
32 {
33  return 0;
34 }
35 
36 void
37 io_fini(void)
38 {
39 }
40 
41 #endif // LELY_NO_STDIO || (!_WIN32 && !_POSIX_C_SOURCE)
io_fini
void io_fini(void)
Finalizes the I/O library and terminates the availability of the I/O functions.
Definition: io.c:38
io.h
io_init
int io_init(void)
Initializes the I/O library and makes the I/O functions available for use.
Definition: io.c:31
io.h