1*5457Slinton /* Copyright (c) 1982 Regents of the University of California */ 2*5457Slinton 3*5457Slinton static char sccsid[] = "@(#)source.h 1.1 01/18/82"; 4*5457Slinton 5*5457Slinton /* 6*5457Slinton * Definitions for interfacing with source management routines. 7*5457Slinton */ 8*5457Slinton 9*5457Slinton char *cursource; /* current source file name */ 10*5457Slinton LINENO lastlinenum; /* last source line number */ 11*5457Slinton 12*5457Slinton skimsource(); /* get seek pointers to source lines */ 13*5457Slinton chkline(); /* checks to see that a line number is valid */ 14*5457Slinton printlines(); /* print out from first line to second */ 15