1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-26 10:12:37 +00:00
Files
PDP-10.its/c20/lex/lexlen.c
2018-05-15 07:06:17 +02:00

21 lines
225 B
C

/*
* Bob Denny 28-Aug-82 Remove reference to stdio.h
*/
#ifdef vms
#include "c:lex.h"
#else
#include <lex.h>
#endif
/*)LIBRARY
*/
lexlength()
/*
* Return the length of the current token
*/
{
return(llend - llbuf);
}