• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/share/doc/arm-arm-none-eabi/html/libc/
1<html lang="en">
2<head>
3<title>fputws - Untitled</title>
4<meta http-equiv="Content-Type" content="text/html">
5<meta name="description" content="Untitled">
6<meta name="generator" content="makeinfo 4.13">
7<link title="Top" rel="start" href="index.html#Top">
8<link rel="up" href="Stdio.html#Stdio" title="Stdio">
9<link rel="prev" href="fputwc.html#fputwc" title="fputwc">
10<link rel="next" href="fread.html#fread" title="fread">
11<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
12<meta http-equiv="Content-Style-Type" content="text/css">
13<style type="text/css"><!--
14  pre.display { font-family:inherit }
15  pre.format  { font-family:inherit }
16  pre.smalldisplay { font-family:inherit; font-size:smaller }
17  pre.smallformat  { font-family:inherit; font-size:smaller }
18  pre.smallexample { font-size:smaller }
19  pre.smalllisp    { font-size:smaller }
20  span.sc    { font-variant:small-caps }
21  span.roman { font-family:serif; font-weight:normal; } 
22  span.sansserif { font-family:sans-serif; font-weight:normal; } 
23--></style>
24<link rel="stylesheet" type="text/css" href="../cs.css">
25</head>
26<body>
27<div class="node">
28<a name="fputws"></a>
29<p>
30Next:&nbsp;<a rel="next" accesskey="n" href="fread.html#fread">fread</a>,
31Previous:&nbsp;<a rel="previous" accesskey="p" href="fputwc.html#fputwc">fputwc</a>,
32Up:&nbsp;<a rel="up" accesskey="u" href="Stdio.html#Stdio">Stdio</a>
33<hr>
34</div>
35
36<h3 class="section">4.23 <code>fputws</code>&mdash;write a wide character string in a file or stream</h3>
37
38<p><a name="index-fputws-192"></a><a name="index-g_t_005ffputws_005fr-193"></a><strong>Synopsis</strong>
39<pre class="example">     #include &lt;wchar.h&gt;
40     int fputws(const wchar_t *<var>ws</var>, FILE *<var>fp</var>);
41     
42     #include &lt;wchar.h&gt;
43     int _fputws_r(struct _reent *<var>ptr</var>, const wchar_t *<var>ws</var>, FILE *<var>fp</var>);
44     
45</pre>
46   <p><strong>Description</strong><br>
47<code>fputws</code> writes the wide character string at <var>ws</var> (but without the
48trailing null) to the file or stream identified by <var>fp</var>.
49
50   <p><code>_fputws_r</code> is simply the reentrant version of <code>fputws</code> that takes
51an additional reentrant struct pointer argument: <var>ptr</var>.
52
53   <p><br>
54<strong>Returns</strong><br>
55If successful, the result is a non-negative integer; otherwise, the result
56is <code>-1</code> to indicate an error.
57
58   <p><br>
59<strong>Portability</strong><br>
60C99, POSIX.1-2001
61
62   <p><br>
63
64   </body></html>
65
66