Update the changelog
[opencv] / apps / cvenv / EiC / stdClib / termios.h
1 #ifndef _TERMIOSH
2 #define _TERMIOSH
3
4 #pragma push_safeptr
5
6 #include "sys/stdtypes.h"
7 #include "sys/termdefs.h"
8 #include "sys/termios.h"
9
10 int tcgetattr(int, struct termios *);
11 int tcsetattr(int, int, const struct termios *);
12
13 speed_t cfgetispeed(const struct termios *);
14 int cfsetispeed(struct termios *, speed_t);
15
16 speed_t cfgetospeed(const struct termios *);
17 int cfsetospeed(struct termios *, speed_t);
18
19 int tcdrain(int);
20 int tcflow(int, int);
21 int tcsendbreak(int, int);
22 int tcflush(int, int);
23
24
25 #pragma pop_ptr
26
27 #endif