FreeRTOS
[armadillo_firmware.git] / FreeRTOS / Common / FileSystem / FatFs-0.7e / doc / en / putc.html
blob374e677381d21338a572154877cb60b5a1519d90
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html lang="en">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5 <meta http-equiv="Content-Style-Type" content="text/css">
6 <link rel="up" title="FatFs" href="../00index_e.html">
7 <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
8 <title>FatFs - f_putc</title>
9 </head>
11 <body>
13 <div class="para">
14 <h2>f_putc</h2>
15 <p>The f_putc funciton puts a character to the file.</p>
16 <pre>
17 int f_putc (
18 int <em>Chr</em>, /* A character to put */
19 FIL* <em>FileObject</em> /* File object */
21 </pre>
22 </div>
24 <div class="para">
25 <h4>Parameters</h4>
26 <dl class="par">
27 <dt>Chr</dt>
28 <dd>A character to be put.</dd>
29 <dt>FileObject</dt>
30 <dd>Pointer to the open file object structuer.</dd>
31 </dl>
32 </div>
35 <div class="para">
36 <h4>Return Values</h4>
37 <p>When the character was written successfuly, the function returns the character. When the function failed due to disk full or any error, an <tt>EOF</tt> will be returned.</p>
38 </div>
41 <div class="para">
42 <h4>Description</h4>
43 <p>The f_putc() is a wrapper function of <a href="write.html">f_write()</a>.</p>
44 </div>
47 <div class="para">
48 <h4>QuickInfo</h4>
49 <p>Available when <tt>_FS_READONLY == 0</tt> and <tt>_USE_STRFUNC</tt> is 1 or 2. When it is set to 2, a <tt>'\n'</tt> is converted to <tt>"\r\n"</tt>.</p>
50 </div>
53 <div class="para">
54 <h4>See Also</h4>
55 <p><tt><a href="open.html">f_open</a>, <a href="puts.html">f_puts</a>, <a href="printf.html">f_printf</a>, <a href="gets.html">f_gets</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a></tt></p>
56 </div>
58 <p class="foot"><a href="../00index_e.html">Return</a></p>
59 </body>
60 </html>