mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:37:36 +00:00
LibC: Add 'cfmakeraw()'
This commit is contained in:
parent
0c07c005b5
commit
9e2c37a8b2
2 changed files with 13 additions and 0 deletions
|
@ -145,4 +145,16 @@ int cfsetospeed(struct termios* tp, speed_t speed)
|
|||
}
|
||||
__RETURN_WITH_ERRNO(ospeed, 0, -1);
|
||||
}
|
||||
|
||||
void cfmakeraw(struct termios* tp)
|
||||
{
|
||||
if (!tp)
|
||||
return;
|
||||
|
||||
auto& termios = *tp;
|
||||
termios.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
|
||||
termios.c_lflag &= ~OPOST;
|
||||
termios.c_cflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
|
||||
termios.c_cflag |= CS8;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue