home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
txttools
/
ed.lzh
/
ED
/
DEFLT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-08-16
|
514b
|
30 lines
/*
* Copyright 1987 Brian Beattie Rights Reserved.
*
* Permission to copy and/or distribute granted under the
* following conditions:
*
* 1). No charge may be made other than resonable charges
* for reproduction.
*
* 2). This notice must remain intact.
*
* 3). No further restrictions may be added.
*
*/
#include <stdio.h>
#include "tools.h"
#include "ed.h"
deflt(def1, def2)
int def1, def2;
{
if(nlines == 0)
{
line1 = def1;
line2 = def2;
}
if(line1 > line2 || line1 <= 0)
return (ERR);
}