mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +00:00
24 lines
587 B
C
24 lines
587 B
C
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/API/POSIX/termios.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int tcgetattr(int fd, struct termios*);
|
|
int tcsetattr(int fd, int optional_actions, const struct termios*);
|
|
int tcflow(int fd, int action);
|
|
int tcflush(int fd, int queue_selector);
|
|
|
|
speed_t cfgetispeed(const struct termios*);
|
|
speed_t cfgetospeed(const struct termios*);
|
|
int cfsetispeed(struct termios*, speed_t);
|
|
int cfsetospeed(struct termios*, speed_t);
|
|
void cfmakeraw(struct termios*);
|
|
|
|
__END_DECLS
|