Files
neutuino/test.c
2025-03-14 18:55:51 -04:00

14 lines
270 B
C

#include <stdio.h>
#include <termios.h>
#include <sys/ioctl.h>
int main() {
printf("ECHO: 0x%x\n", ECHO);
printf("ICANON: 0x%x\n", ICANON);
printf("ISIG: 0x%x\n", ISIG);
printf("\nNCCS: 0x%x\n", NCCS);
printf("TIOCFWINSZ: 0x%x\n", TIOCGWINSZ);
return 0;
}