Finita la conversione dei listati in file separati. Passato anche alla nuova
[gapil.git] / listati / termios.h
diff --git a/listati/termios.h b/listati/termios.h
new file mode 100644 (file)
index 0000000..b0be108
--- /dev/null
@@ -0,0 +1,10 @@
+struct termios {
+    tcflag_t c_iflag;      /* input modes */
+    tcflag_t c_oflag;      /* output modes */
+    tcflag_t c_cflag;      /* control modes */
+    tcflag_t c_lflag;      /* local modes */
+    cc_t c_cc[NCCS];       /* control characters */
+    cc_t c_line;           /* line discipline */
+    speed_t c_ispeed;      /* input speed */
+    speed_t c_ospeed;      /* output speed */
+};