Mercurial > hg > Members > kono > nitros9-code
view docs/ccguide/scanf.refentry @ 574:c49be44efba2
All function prototypes are added.
author | roug |
---|---|
date | Fri, 01 Nov 2002 10:02:34 +0000 |
parents | fcb97f0ba24b |
children | 96ad5be1860b |
line wrap: on
line source
<refentry id="scanf"> <refnamediv> <refname>Scanf</refname> <refname>Fscanf</refname> <refname>Sscanf</refname> <refpurpose>input string interpretation</refpurpose> </refnamediv> <refsynopsisdiv> <funcsynopsis> <funcsynopsisinfo> #include <stdio.h> </funcsynopsisinfo> <funcprototype> <funcdef><function>fscanf</function></funcdef> <paramdef>FILE *<parameter>fp</parameter></paramdef> <paramdef>char *<parameter>control</parameter></paramdef> <paramdef>char *<parameter>pointer...</parameter></paramdef> </funcprototype> <funcprototype> <funcdef><function>scanf</function></funcdef> <paramdef>char *<parameter>control</parameter></paramdef> <paramdef>char *<parameter>pointer...</parameter></paramdef> </funcprototype> <funcprototype> <funcdef><function>sscanf</function></funcdef> <paramdef>char *<parameter>string</parameter></paramdef> <paramdef>char *<parameter>control</parameter></paramdef> <paramdef>char *<parameter>pointer...</parameter></paramdef> </funcprototype> </funcsynopsis> </refsynopsisdiv> <refsect1><title>Description</title> <para> Placeholder </para> </refsect1> <refsect1><title>Diagnostics</title> <para> These functions return EOF on end of input or error and a count which is shorter than expected for unexpected or unmatched items. </para> </refsect1> <refsect1><title>See Also</title> <para> <link linkend="atof">atoi(), atof()</link>, <link linkend="getc">getc()</link>, <link linkend="printf">printf()</link> Kernighan and Ritchie pp 147-150 </para> </refsect1> </refentry>