1 /* 2 * Copyright (c) 1980 Regents of the University of California. 3 * All rights reserved. The Berkeley software License Agreement 4 * specifies the terms and conditions for redistribution. 5 * 6 * @(#)source.h 5.3 (Berkeley) 01/03/88 7 */ 8 9 /* 10 * Definitions for interfacing with source management routines. 11 */ 12 13 char *cursource; /* current source file name */ 14 LINENO lastlinenum; /* last source line number */ 15 16 int skimsource(); /* get seek pointers to source lines */ 17 int chkline(); /* checks to see that a line number is valid */ 18 int printlines(); /* print out from first line to second */ 19