]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/puts.3
Automated unformatting of parentheses using unformat_parens.sh
[thirdparty/man-pages.git] / man3 / puts.3
index 2b88c22d60cf0317457374afd55eaeda8c072108..d5c638628968b344949547dab56b05fef3937868 100644 (file)
@@ -38,7 +38,7 @@ fputc, fputs, putc, putchar, puts \- output of characters and strings
 .nl
 .BI "int puts(const char *" "s" );
 .SH DESCRIPTION
-.B fputc()
+.BR fputc ()
 writes the character
 .IR c ,
 cast to an
@@ -46,7 +46,7 @@ cast to an
 to
 .IR stream .
 .PP
-.B fputs()
+.BR fputs ()
 writes the string
 .I s
 to
@@ -54,9 +54,9 @@ to
 without its trailing
 .BR '\e0' .
 .PP
-.B putc()
+.BR putc ()
 is equivalent to
-.B fputc()
+.BR fputc ()
 except that it may be implemented as a macro which evaluates
 .I stream
 more than once.
@@ -65,7 +65,7 @@ more than once.
 is equivalent to
 .BI "putc(" c , stdout ).
 .PP
-.BR puts() 
+.BR puts ()
 writes the string
 .I s
 and a trailing newline
@@ -100,7 +100,7 @@ ANSI-C, POSIX.1
 It is not advisable to mix calls to output functions from the
 .B stdio
 library with low-level calls to
-.B write() 
+.BR write ()
 for the file descriptor associated with the same output stream; the results
 will be undefined and very probably not what you want.
 .SH "SEE ALSO"