mirror of
https://github.com/PDP-10/its.git
synced 2026-03-26 10:12:37 +00:00
21 lines
225 B
C
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);
|
|
}
|