home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / LEX / LEXGET.C < prev    next >
Text File  |  1993-12-01  |  372b  |  18 lines

  1. /*
  2.  * lexget.c
  3.  *
  4.  * Bob Denny     28-Aug-82    Move stdio dependencies to lexerr(), lexget(),
  5.  *                            lexech() and mapch(). This is one of 4 modules
  6.  *                            in lexlib which depend upon the standard I/O package.
  7.  *
  8.  * Scott Guthery 20-Nov-83  Adapt for IBM PC & DeSmet C.
  9.  */
  10.  
  11. #include <stdio.h>
  12. #include <lex.h>
  13.  
  14. lexgetc()
  15. {
  16.         return(fgetc(lexin));
  17. }
  18.