1*22576Sdist /* 2*22576Sdist * Copyright (c) 1980 Regents of the University of California. 3*22576Sdist * All rights reserved. The Berkeley software License Agreement 4*22576Sdist * specifies the terms and conditions for redistribution. 5*22576Sdist * 6*22576Sdist * @(#)source.h 5.1 (Berkeley) 06/06/85 7*22576Sdist */ 85457Slinton 9*22576Sdist * 105457Slinton * Definitions for interfacing with source management routines. 115457Slinton */ 125457Slinton 135457Slinton char *cursource; /* current source file name */ 145457Slinton LINENO lastlinenum; /* last source line number */ 155457Slinton 165457Slinton skimsource(); /* get seek pointers to source lines */ 175457Slinton chkline(); /* checks to see that a line number is valid */ 185457Slinton printlines(); /* print out from first line to second */ 19