mirror of
https://github.com/PDP-10/its.git
synced 2026-03-25 17:58:40 +00:00
18 lines
170 B
C
18 lines
170 B
C
#include <stdio.h>
|
|
|
|
#ifdef vms
|
|
#include "c:lex.h"
|
|
#else
|
|
#include <lex.h>
|
|
#endif
|
|
|
|
/*)LIBRARY
|
|
*/
|
|
|
|
extern char *llp2;
|
|
|
|
lexpeekc()
|
|
{
|
|
return(llend<llp2? *llend&0377: EOF);
|
|
}
|