about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTAAFile.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>1998-12-13 04:18:55 -0500
committerThomas E. Dickey <dickey@invisible-island.net>1998-12-13 04:18:55 -0500
commit08fc6e5c6582f05f43c968931b04d698cf7abc86 (patch)
treee8dd5f36c333c4fec9bee88f9bffb370db7ee176 /WWW/Library/Implementation/HTAAFile.c
parent0654c7025fbe241efddf0c3b9e58817f262aeda9 (diff)
downloadlynx-snapshots-08fc6e5c6582f05f43c968931b04d698cf7abc86.tar.gz
snapshot of project "lynx", label v2-8-2dev_9
Diffstat (limited to 'WWW/Library/Implementation/HTAAFile.c')
-rw-r--r--WWW/Library/Implementation/HTAAFile.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/WWW/Library/Implementation/HTAAFile.c b/WWW/Library/Implementation/HTAAFile.c
index 82da7af9..101176cf 100644
--- a/WWW/Library/Implementation/HTAAFile.c
+++ b/WWW/Library/Implementation/HTAAFile.c
@@ -31,7 +31,7 @@
 **	fp	is the file from which records are read from.
 **
 ** ON EXIT:
-**	returns	nothing. File read pointer is located at the beginning
+**	returns	nothing.  File read pointer is located at the beginning
 **		of the next record. Handles continuation lines
 **		(lines ending in comma indicate a following
 **		continuation line).
@@ -60,19 +60,19 @@ PUBLIC void HTAAFile_nextRec ARGS1(FILE *, fp)
 /* PRIVATE							read_item()
 **		READ AN ITEM FROM A PASSWORD, GROUP
 **		OR ACCESS CONTROL LIST FILE
-**		i.e. either a field, or a list item.
+**		i.e., either a field, or a list item.
 ** ON ENTRY:
 **	fp		is the file to read the characters from
 **	contents	is the character array to put the characters
 **	reading_list	if TRUE, read a list item (ends either in
-**			acomma or acolon),
+**			a comma or a colon),
 **			if FALSE, read a field (ends in acolon).
 **	max_len		is the maximum number of characters that may
-**			be read (i.e. the size of dest minus one for
+**			be read (i.e., the size of dest minus one for
 **			terminating null).
 ** ON EXIT:
 **	returns		the terminating character
-**			(i.e. either separator or CR or LF or EOF).
+**			(i.e., either separator or CR or LF or EOF).
 **	contents	contains a null-terminated string representing
 **			the read field.
 ** NOTE 1:
@@ -132,17 +132,17 @@ PRIVATE int read_item ARGS4(FILE *,	fp,
 /* PUBLIC						HTAAFile_readField()
 **		READ A FIELD FROM A PASSWORD, GROUP
 **		OR ACCESS CONTROL LIST FILE
-**		i.e. an item terminated by colon,
+**		i.e., an item terminated by colon,
 **		end-of-line, or end-of-file. 
 ** ON ENTRY:
 **	fp		is the file to read the characters from
 **	contents	is the character array to put the characters
 **	max_len		is the maximum number of characters that may
-**			be read (i.e. the size of dest minus one for
+**			be read (i.e., the size of dest minus one for
 **			terminating null).
 ** ON EXIT:
 **	returns		the terminating character
-**			(i.e. either separator or CR or LF or EOF).
+**			(i.e., either separator or CR or LF or EOF).
 **	contents	contains a null-terminated string representing
 **			the read field.
 ** NOTE 1: