Name Date Size #Lines LOC

..08-May-2022-

test/H08-May-2022-910693

MakefileH A D08-May-2022308 188

POSIXH A D21-May-20224.3 KiB10487

READMEH A D08-May-2022917 2417

buf.cH A D08-May-20227 KiB320226

cbc.cH A D08-May-202212.5 KiB461247

ed.1H A D08-May-202224 KiB980979

ed.hH A D08-May-20227.6 KiB266193

glbl.cH A D08-May-20225.8 KiB214155

io.cH A D08-May-20228.6 KiB359288

main.cH A D08-May-202231.7 KiB1,4341,245

re.cH A D08-May-20223.9 KiB14795

sub.cH A D08-May-20226.8 KiB263205

undo.cH A D08-May-20224.1 KiB14998

README

1$NetBSD: README,v 1.10 2019/01/04 19:13:58 maya Exp $
2
3ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
4any regular expression package that conforms to the POSIX interface
5standard, such as GNU regex(3).
6
7If reliable signals are supported (e.g., POSIX sigaction(2)), it should
8compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
9should be redefined to disable interrupts.
10
11The following compiler directives are recognized:
12DES		- to add encryption support (requires crypt(3))
13BACKWARDS	- for backwards compatibility
14NEED_INSQUE	- if insque(3) is missing
15
16The file `POSIX' describes extensions to and deviations from the POSIX
17standard.
18
19The ./test directory contains regression tests for ed. The README
20file in that directory explains how to run these.
21
22For a description of the ed algorithm, see Kernighan and Plauger's book
23"Software Tools in Pascal," Addison-Wesley, 1981.
24