OSDN Git Service

606ed63df761e205523e9d8a0062c7fbca4360a3
[linuxjm/LDP_man-pages.git] / original / man3 / puts.3
1 .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Modified Sat Jul 24 18:42:59 1993 by Rik Faith (faith@cs.unc.edu)
26 .TH PUTS 3  2014-01-11 "GNU" "Linux Programmer's Manual"
27 .SH NAME
28 fputc, fputs, putc, putchar, puts \- output of characters and strings
29 .SH SYNOPSIS
30 .nf
31 .B #include <stdio.h>
32 .sp
33 .BI "int fputc(int " c ", FILE *" stream );
34
35 .BI "int fputs(const char *" "s" ", FILE *" "stream" );
36
37 .BI "int putc(int " c ", FILE *" stream );
38
39 .BI "int putchar(int " c );
40
41 .BI "int puts(const char *" "s" );
42 .fi
43 .SH DESCRIPTION
44 .BR fputc ()
45 writes the character
46 .IR c ,
47 cast to an
48 .IR "unsigned char" ,
49 to
50 .IR stream .
51 .PP
52 .BR fputs ()
53 writes the string
54 .I s
55 to
56 .IR stream ,
57 without its terminating null byte (\(aq\e0\(aq).
58 .PP
59 .BR putc ()
60 is equivalent to
61 .BR fputc ()
62 except that it may be implemented as a macro which evaluates
63 .I stream
64 more than once.
65 .PP
66 .BI "putchar(" c );
67 is equivalent to
68 .BI "putc(" c ", " stdout ).
69 .PP
70 .BR puts ()
71 writes the string
72 .I s
73 and a trailing newline
74 to
75 .IR stdout .
76 .PP
77 Calls to the functions described here can be mixed with each other and with
78 calls to other output functions from the
79 .I stdio
80 library for the same output stream.
81 .PP
82 For nonlocking counterparts, see
83 .BR unlocked_stdio (3).
84 .SH RETURN VALUE
85 .BR fputc (),
86 .BR putc ()
87 and
88 .BR putchar ()
89 return the character written as an
90 .I unsigned char
91 cast to an
92 .I int
93 or
94 .B EOF
95 on error.
96 .PP
97 .BR puts ()
98 and
99 .BR fputs ()
100 return a nonnegative number on success, or
101 .B EOF
102 on error.
103 .SH CONFORMING TO
104 C89, C99.
105 .SH BUGS
106 It is not advisable to mix calls to output functions from the
107 .I stdio
108 library with low-level calls to
109 .BR write (2)
110 for the file descriptor associated with the same output stream; the results
111 will be undefined and very probably not what you want.
112 .SH SEE ALSO
113 .BR write (2),
114 .BR ferror (3),
115 .BR fgets (3),
116 .BR fopen (3),
117 .BR fputwc (3),
118 .BR fputws (3),
119 .BR fseek (3),
120 .BR fwrite (3),
121 .BR putwchar (3),
122 .BR scanf (3),
123 .BR unlocked_stdio (3)
124 .SH COLOPHON
125 This page is part of release 3.67 of the Linux
126 .I man-pages
127 project.
128 A description of the project,
129 information about reporting bugs,
130 and the latest version of this page,
131 can be found at
132 \%http://www.kernel.org/doc/man\-pages/.