显示linux系统的tcgetattr函数源码及其文件路径
时间: 2023-11-28 19:03:39 浏览: 93
`tcgetattr()` 函数是用于获取终端属性的函数,其定义在 `termios.h` 头文件中。以下是 `tcgetattr()` 函数的源码:
```c
#include <termios.h>
int tcgetattr(int fd, struct termios *termios_p);
```
`tcgetattr()` 函数的文件路径通常在 `/usr/include/termios.h`。
需要注意的是,`tcgetattr()` 函数是一个系统调用,其实现是在内核中完成的,因此其完整的源代码并不在 `/usr/include/termios.h` 中。
阅读全文