home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols200
/
vol270
/
sed2.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-05-22
|
314b
|
15 lines
{ Small editor }
{ by K.Nakazato Ver. 1.00 Feb. 10, 1984 }
{ 1.13 Jul. 14, 1984 }
const maxtext =$7FFF;
type texttype=array [0..maxtext] of char;
var textbuf :texttype;
position:integer;
{$I SED.INC}
begin
sedit(textbuf,false,position)
end.