00001 /* 00002 * InCode - [ input.h ] 00003 * (c) 2002, J. Weeks 00004 * jweeks@mailandnews.com 00005 * 00006 */ 00007 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 00017 #ifndef __INPUT_H__ 00018 #define __INPUT_H__ 00019 00020 extern char lookAhead; 00021 00022 int inputInit(char *fname); 00023 int inputClose(void); 00024 int inputExists(void); 00025 int inputLookAhead(void); 00026 int inputChar(char *c); 00027 00028 int inputIdent(char *str); 00029 int inputNumber(char *str); 00030 00031 #endif