/* * Select raw or "interactive" terminal mode for device. * $Id$ * Copyright (c) 1997 by Tycho Softworks. * For conditions of distribution and reuse see product license. */ #include #ifndef TERMIOS_H_MISSING #include #endif bool interactive(stty_t stty, bool mode) { #ifndef TERMIOS_H_MISSING struct termios *tios = stty; if(mode) { } else { tios->c_oflag = 0; tios->c_lflag = 0; } #endif return mode; }