You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.2 KiB
54 lines
2.2 KiB
1 month ago
|
commit 2be0572f3a41d5d5a8bb3b2b04244b7c01ac0f58
|
||
|
Author: Florian Weimer <fweimer@redhat.com>
|
||
|
Date: Tue Aug 13 15:52:34 2024 +0200
|
||
|
|
||
|
manual: Document dprintf and vdprintf
|
||
|
|
||
|
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
|
||
|
|
||
|
diff --git a/manual/stdio.texi b/manual/stdio.texi
|
||
|
index 41298b87a4a6c7d9..d3d855fc62b8768b 100644
|
||
|
--- a/manual/stdio.texi
|
||
|
+++ b/manual/stdio.texi
|
||
|
@@ -2483,6 +2483,26 @@ store the result in which case @code{-1} is returned. This was
|
||
|
changed in order to comply with the @w{ISO C99} standard.
|
||
|
@end deftypefun
|
||
|
|
||
|
+@deftypefun dprintf (int @var{fd}, @var{template}, ...)
|
||
|
+@standards{POSIX, stdio.h}
|
||
|
+@safety{@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
|
||
|
+This function formats its arguments according to @var{template} and
|
||
|
+writes the result to the file descriptor @var{fd}, using the
|
||
|
+@code{write} function. It returns the number of bytes written, or a
|
||
|
+negative value if there was an error. In the error case, @code{errno}
|
||
|
+is set appropriately. The possible @code{errno} values depend on the
|
||
|
+type of the file descriptor @var{fd}, in addition to the general
|
||
|
+@code{printf} error codes.
|
||
|
+
|
||
|
+The number of calls to @code{write} is unspecified, and some @code{write}
|
||
|
+calls may have happened even if @code{dprintf} returns with an error.
|
||
|
+
|
||
|
+@strong{Portability Note:} POSIX does not require that this function is
|
||
|
+async-signal-safe, and @theglibc{} implementation is not. However, some
|
||
|
+other systems offer this function as an async-signal-safe alternative to
|
||
|
+@code{fprintf}. @xref{POSIX Safety Concepts}.
|
||
|
+@end deftypefun
|
||
|
+
|
||
|
@node Dynamic Output
|
||
|
@subsection Dynamically Allocating Formatted Output
|
||
|
|
||
|
@@ -2696,6 +2716,13 @@ The @code{obstack_vprintf} function is the equivalent of
|
||
|
as for @code{vprintf}.@refill
|
||
|
@end deftypefun
|
||
|
|
||
|
+@deftypefun int vdprintf (int @var{fd}, const char *@var{template}, va_list @var{ap})
|
||
|
+@standards{POSIX, stdio.h}
|
||
|
+@safety{@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
|
||
|
+The @code{vdprintf} is the equivalent of @code{dprintf}, but processes
|
||
|
+an argument list.
|
||
|
+@end deftypefun
|
||
|
+
|
||
|
Here's an example showing how you might use @code{vfprintf}. This is a
|
||
|
function that prints error messages to the stream @code{stderr}, along
|
||
|
with a prefix indicating the name of the program
|