changeset 595:e50380625be6

All refentries finished.
author roug
date Fri, 15 Nov 2002 21:49:51 +0000
parents c0da1728ed5b
children fe8e46eca1ed
files docs/ccguide/fopen.refentry docs/ccguide/fread.refentry
diffstat 2 files changed, 12 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/docs/ccguide/fopen.refentry	Fri Nov 15 21:49:51 2002 +0000
+++ b/docs/ccguide/fopen.refentry	Fri Nov 15 21:49:51 2002 +0000
@@ -1,6 +1,6 @@
 <refentry id="fopen">
 <refnamediv>
-<refname>fopen</refname>
+<refname>Fopen</refname>
 <refpurpose>open a file and return a file pointer</refpurpose>
 </refnamediv>
 
--- a/docs/ccguide/fread.refentry	Fri Nov 15 21:49:51 2002 +0000
+++ b/docs/ccguide/fread.refentry	Fri Nov 15 21:49:51 2002 +0000
@@ -31,7 +31,16 @@
 
 <refsect1><title>Description</title>
 <para>
-Placeholder
+Fread reads from the file pointed to by "fp". "Number" is the
+number of items of size "size" that are to be read starting at
+"ptr". The best way to pass the argument "size" to fread is by
+using "sizeof". Fread returns the number of items actually
+read.
+</para>
+<para>
+Fwrite writes to the file pointed to by "fp". "Number" is the
+number of items of size "size" reading the from memory
+starting at "ptr".
 </para>
 </refsect1>
 <refsect1><title>Diagnostics</title>
@@ -48,7 +57,7 @@
 <link linkend="fopen">Fopen()</link>,
 <link linkend="getc">getc()</link>,
 <link linkend="putc">putc()</link>,
-<link linkend="printf">printf()</link>
+<link linkend="printf">printf()</link>.
 </para>
 </refsect1>