home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / lex / lexpee.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  236 b   |  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. lexpeekc()
  11. {
  12.         return(llend<llp2? *llend&0377: EOF);
  13. }
  14.