MentOS  0.8.0
The Mentoring Operating System
termios.h
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include "bits/termios-struct.h"
9 
14 extern int tcgetattr(int fd, termios_t *termios_p);
15 
21 extern int tcsetattr(int fd, int optional_actions, const termios_t *termios_p);
Stores information about a terminal IOs.
Definition: termios-struct.h:18
Definition of the termios structure.
int tcgetattr(int fd, termios_t *termios_p)
Put the state of FD into *TERMIOS_P.
Definition: termios.c:11
int tcsetattr(int fd, int optional_actions, const termios_t *termios_p)
Set the state of FD to *TERMIOS_P.
Definition: termios.c:25