Lely core libraries 2.3.4
io.h
Go to the documentation of this file.
1
22#ifndef LELY_IO2_SYS_IO_H_
23#define LELY_IO2_SYS_IO_H_
24
25#include <lely/io2/io2.h>
26
28typedef struct io_poll io_poll_t;
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
42int io_init(void);
43
49void io_fini(void);
50
51#ifdef __cplusplus
52}
53#endif
54
55#endif // !LELY_IO2_SYS_IO_H_
This is the public header file of the I/O library.
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
An I/O polling interface.
Definition: poll.c:51
Definition: poll.c:88