Penguin
Annotated edit history of fputws(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 FPUTWS
2 !!!FPUTWS
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 NOTES
10 ----
11 !!NAME
12
13
14 fputws - write a wide character string to a FILE stream
15 !!SYNOPSIS
16
17
18 __#include
19 __''ws''__, FILE *__''stream''__);
20 __
21 !!DESCRIPTION
22
23
24 The __fputws__ function is the wide-character equivalent
25 of the __fputs__ function. It writes the wide character
26 string starting at ''ws'', up to but not including the
27 terminating L'0' character, to ''stream''.
28 !!RETURN VALUE
29
30
31 The __fputws__ function returns a nonnegative integer if
32 the operation was successful, or -1 to indicate an
33 error.
34 !!CONFORMING TO
35
36
37 ISO/ANSI C, UNIX98
38 !!SEE ALSO
39
40
41 fputwc(3)
42 !!NOTES
43
44
45 The behaviour of __fputws__ depends on the LC_CTYPE
46 category of the current locale.
47
48
49 In the absence of additional information passed to the fopen
50 call, it is reasonable to expect that __fputws__ will
51 actually write the multibyte string corresponding to the
52 wide character string ''ws''.
53 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.