2023-04-09 09:23:57 +00:00
|
|
|
/* bits/termios.h: Terminal control definitions. */
|
|
|
|
|
|
|
|
#ifndef _BITS_TERMIOS_H
|
|
|
|
#define _BITS_TERMIOS_H
|
|
|
|
|
|
|
|
typedef long tcflag_t;
|
|
|
|
|
|
|
|
// VERY incomplete termios structure.
|
|
|
|
struct termios
|
|
|
|
{
|
|
|
|
tcflag_t c_lflag;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Values for c_lflag.
|
|
|
|
#define ECHO 1
|
2023-07-12 11:49:37 +00:00
|
|
|
#define TOSTOP 2
|
2023-04-09 09:23:57 +00:00
|
|
|
|
|
|
|
// termios ioctl() requests.
|
|
|
|
#define TCGETS 0
|
|
|
|
#define TCSETS 1
|
2023-07-12 11:49:37 +00:00
|
|
|
#define TIOCSPGRP 2
|
2023-04-09 09:23:57 +00:00
|
|
|
|
|
|
|
#endif
|