1 //===-- Definition of struct termios --------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef __LLVM_LIBC_TYPES_STRUCT_TERMIOS_H__
10 #define __LLVM_LIBC_TYPES_STRUCT_TERMIOS_H__
17 tcflag_t c_iflag
; // Input mode flags
18 tcflag_t c_oflag
; // Output mode flags
19 tcflag_t c_cflag
; // Control mode flags
20 tcflag_t c_lflag
; // Local mode flags
22 cc_t c_line
; // Line discipline
24 // NCCS is defined in llvm-libc-macros/termios-macros.h.
25 cc_t c_cc
[NCCS
]; // Control characters
27 speed_t c_ispeed
; // Input speed
28 speed_t c_ospeed
; // output speed
32 #endif // __LLVM_LIBC_TYPES_STRUCT_TERMIOS_H__