00001 /* L I B T E R M I O . H 00002 * BRL-CAD 00003 * 00004 * Copyright (c) 2004-2006 United States Government as represented by 00005 * the U.S. Army Research Laboratory. 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public License 00009 * as published by the Free Software Foundation; either version 2.1 of 00010 * the License, or (at your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, but 00013 * WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Library General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with this file; see the file named COPYING for more 00019 * information. 00020 */ 00021 /** @addtogroup libtermio */ 00022 /*@{*/ 00023 /** @file libtermio.h 00024 * T E R M I O . H 00025 * 00026 * Externs for the BRL-CAD library LIBTERMIO 00027 * 00028 * @author 00029 * Gary S. Moss 00030 * 00031 * @par Source 00032 * The U. S. Army Research Laboratory 00033 *@n Aberdeen Proving Ground, Maryland 21005-5068 USA 00034 * 00035 * @par Include Sequencing - 00036 @code #include "common.h" 00037 #include <stdio.h> 00038 #include "termio.h" 00039 @endcode 00040 * $Header: /cvsroot/brlcad/brlcad/include/libtermio.h,v 14.8 2006/09/18 05:24:07 lbutler Exp $ 00041 */ 00042 00043 void clr_Cbreak( int fd ); 00044 void set_Cbreak( int fd ); 00045 void clr_Raw( int fd ); 00046 void set_Raw( int fd ); 00047 void set_Echo( int fd ); 00048 void clr_Echo( int fd ); 00049 void set_Tabs( int fd ); 00050 void clr_Tabs( int fd ); 00051 void set_HUPCL( int fd ); 00052 void clr_CRNL( int fd ); 00053 unsigned short get_O_Speed( int fd ); 00054 void save_Tty( int fd ); 00055 void reset_Tty( int fd ); 00056 int save_Fil_Stat( int fd ); 00057 int reset_Fil_Stat( int fd ); 00058 int set_O_NDELAY( int fd ); 00059 void prnt_Tio(); /* misc. types of args */ 00060 /*@}*/ 00061 /* 00062 * Local Variables: 00063 * mode: C 00064 * tab-width: 8 00065 * c-basic-offset: 4 00066 * indent-tabs-mode: t 00067 * End: 00068 * ex: shiftwidth=4 tabstop=8 00069 */ 00070