changeset 546:8b99a9882961

All "See Also" implemented
author roug
date Mon, 14 Oct 2002 19:08:34 +0000
parents 32f33a35f57a
children 9a345cb1c03a
files docs/ccguide/ungetc.refentry docs/ccguide/unlink.refentry
diffstat 2 files changed, 31 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/docs/ccguide/ungetc.refentry	Mon Oct 14 19:08:34 2002 +0000
+++ b/docs/ccguide/ungetc.refentry	Mon Oct 14 19:08:34 2002 +0000
@@ -19,7 +19,31 @@
 
 <refsect1><title>Description</title>
 <para>
-Placeholder
+This function alters the state of the input file buffer such
+that the next call of "getc()" returns "ch".
+</para>
+<para>
+Only one character may be pushed back, and at least on
+character must have been read from the file before a call to
+ungetc.
+</para>
+<para>
+<quote>Fseek()</quote> erases any puchback.
 </para>
 </refsect1>
+
+<refsect1><title>Diagnostics</title>
+<para>
+Ungetc returns its character argument unless no puchback could
+occur, in which case EOF is returned.
+</para>
+</refsect1>
+
+<refsect1><title>See Also</title>
+<para>
+<link linkend="getc">getc()</link>,
+<link linkend="fseek">fseek()</link>
+</para>
+</refsect1>
+
 </refentry>
--- a/docs/ccguide/unlink.refentry	Mon Oct 14 19:08:34 2002 +0000
+++ b/docs/ccguide/unlink.refentry	Mon Oct 14 19:08:34 2002 +0000
@@ -14,6 +14,12 @@
 
 </refsynopsisdiv>
 
+<refsect1><title>Assembler Equivalent</title>
+<para>
+os9 I$DELETE
+</para>
+</refsect1>
+
 <refsect1><title>Description</title>
 <para>
 Placeholder