home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / OS2_LEX.ZIP / LEXCHA.C < prev    next >
C/C++ Source or Header  |  1980-01-01  |  243b  |  14 lines

  1. /*
  2.  * Bob Denny     28-Aug-82  Remove reference to stdio.h
  3.  * Scott Guthery 20-Nov-83    Adapt for IBM PC & DeSmet C
  4.  */
  5.  
  6. #include <lex.h>
  7.  
  8. extern char *llend, *llp2;
  9.  
  10. lexchar()
  11. {
  12.         return(llend<llp2? *llend++&0377: lexgetc());
  13. }
  14.