blob: 5fbc344c0e9f7e66433f3e17b1ba4b28d4a56307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>
#include <asm/ioctls.h>
#include <sys/ioctl.h>
int main(int argc,char *argv[])
{
struct termios t;
int ret;
printf("TCGETS = 0x%08x\n",TCGETS);
printf("sizeof(struct termios) = %ld\n",(long)sizeof(struct termios));
ret = ioctl(fileno(stdout),TCGETS,&t);
if(ret<0){
perror("ioctl");
}else{
printf("ioctl returned %d\n",ret);
}
return 0;
}
|