tcgetattr.c\termios\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/termios/tcgetattr.c
blob: 545a0bf8ad135696e526c22c9bf1f251879292ac (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <termios.h>
#include <sys/ioctl.h>
int tcgetattr(int fd, struct termios *tio)
{
	if (ioctl(fd, TCGETS, tio))
		return -1;
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月22日 19:47:26 +0000

AltStyle によって変換されたページ (->オリジナル) /