Files
RedBear-OS/src/header/termios/cbindgen.toml
T
2026-06-08 18:27:53 +01:00

20 lines
526 B
TOML

# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/termios.h.html
#
# Spec quotations relating to includes:
# - "The <termios.h> header shall define the pid_t type as described in <sys/types.h>."
after_includes = """
#include <bits/pid-t.h> // for pid_t from sys/types.h
#include <bits/winsize.h> // for winsize
"""
include_guard = "_RELIBC_TERMIOS_H"
language = "C"
style = "Tag"
no_includes = true
cpp_compat = true
[enum]
prefix_with_name = true
[export.rename]
"winsize" = "struct winsize"