Skip to content
Snippets Groups Projects
Unverified Commit 13848875 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub
Browse files

closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)


(cherry picked from commit e92d67df)

Co-authored-by: default avatarErlend Egeberg Aasland <erlend.aasland@innova.no>
parent ec2385e3
Branches
Tags
No related merge requests found
...@@ -11,14 +11,14 @@ Functions for number conversion and formatted string output. ...@@ -11,14 +11,14 @@ Functions for number conversion and formatted string output.
.. c:function:: int PyOS_snprintf(char *str, size_t size, const char *format, ...) .. c:function:: int PyOS_snprintf(char *str, size_t size, const char *format, ...)
Output not more than *size* bytes to *str* according to the format string Output not more than *size* bytes to *str* according to the format string
*format* and the extra arguments. See the Unix man page :manpage:`snprintf(2)`. *format* and the extra arguments. See the Unix man page :manpage:`snprintf(3)`.
.. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va) .. c:function:: int PyOS_vsnprintf(char *str, size_t size, const char *format, va_list va)
Output not more than *size* bytes to *str* according to the format string Output not more than *size* bytes to *str* according to the format string
*format* and the variable argument list *va*. Unix man page *format* and the variable argument list *va*. Unix man page
:manpage:`vsnprintf(2)`. :manpage:`vsnprintf(3)`.
:c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library :c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library
functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose is to functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose is to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment