freebsd-dev/bin/ed
Andrey A. Chernov 7cbfe4d8da File positions are off_t nowdays, not long, so:
fseek -> fseeko
  ftell -> ftello

  NOTE: that fseek/ftell not works for >long offsets per POSIX:

  [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
  cannot be represented correctly in an object of type long.

  [EOVERFLOW] For ftell ( ), the current file offset cannot be represented
  correctly in an object of type long.
2001-09-01 23:26:40 +00:00
..
test $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
buf.c File positions are off_t nowdays, not long, so: 2001-09-01 23:26:40 +00:00
cbc.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
ed.1 mdoc(7) police: join split punctuation to macro calls. 2001-08-10 17:35:21 +00:00
ed.h o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
glbl.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
io.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
main.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
Makefile o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
POSIX Locale support was added by ache long ago. 2000-07-17 10:40:48 +00:00
re.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
README $Id$ -> $FreeBSD$ 1999-08-27 23:15:48 +00:00
sub.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00
undo.c o Correctly define rcsid. 2001-08-06 22:01:31 +00:00

$FreeBSD$

ed is an 8-bit-clean, POSIX-compliant line editor.  It should work with
any regular expression package that conforms to the POSIX interface
standard, such as GNU regex(3).

If reliable signals are supported (e.g., POSIX sigaction(2)), it should
compile with little trouble.  Otherwise, the macros SPL1() and SPL0()
should be redefined to disable interrupts.

The following compiler directives are recognized:
DES		- to add encryption support (requires crypt(3))
NO_REALLOC_NULL	- if realloc(3) does not accept a NULL pointer
BACKWARDS	- for backwards compatibility
NEED_INSQUE	- if insque(3) is missing

The file `POSIX' describes extensions to and deviations from the POSIX
standard.

The ./test directory contains regression tests for ed. The README
file in that directory explains how to run these.

For a description of the ed algorithm, see Kernighan and Plauger's book
"Software Tools in Pascal," Addison-Wesley, 1981.