Better documentation of append mode. This should have gone in -current

directly.   Now also .Xr fseek reference.

Prodded by:	sheldonh
This commit is contained in:
Eivind Eklund 2000-09-22 12:55:36 +00:00
parent 3f605d2ffc
commit 11ab3fc7cb
1 changed files with 8 additions and 0 deletions

View File

@ -84,10 +84,18 @@ The stream is positioned at the beginning of the file.
Open for writing.
The file is created if it does not exist.
The stream is positioned at the end of the file.
Subsequent writes to the file will always end up at the then current
end of file, irrespective of any intervening
.Xr fseek 3
or similar.
.It Dq Li a+
Open for reading and writing.
The file is created if it does not exist.
The stream is positioned at the end of the file.
Subsequent writes to the file will always end up at the then current
end of file, irrespective of any intervening
.Xr fseek 3
or similar.
.El
.Pp
The