Guardian Procedure Calls Reference Manual

last
input
INT(32):value
specifies 1000 times the line number of the last line in the range of lines to be deleted. If a
negative value is specified, the line number of the last line in the file is used.
Returned Value
INT
A file-system error code that indicates the outcome of the call.
Example
In the following example, DELETEEDIT deletes lines 50 through 100 from the specified file:
INT(32) first := 50000D;
INT(32) last := 100000D;
.
.
err := DELETEEDIT ( filenumber, first, last );
Related Programming Manual
For programming information about the DELETEEDIT procedure, see the Guardian Programmer's
Guide.
DELETEEDIT Procedure 299