Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
ec5c6f4a
Commit
ec5c6f4a
authored
May 30, 2009
by
Eli Zaretskii
Committed by
DJ Delorie
May 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
snprintf.c: Doc fix.
* snprintf.c: Doc fix. * vsnprintf.c: Doc fix. From-SVN: r147998
parent
acd26225
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
14 deletions
+24
-14
libiberty/ChangeLog
+6
-0
libiberty/snprintf.c
+9
-7
libiberty/vsnprintf.c
+9
-7
No files found.
libiberty/ChangeLog
View file @
ec5c6f4a
2009-05-30 Eli Zaretskii <eliz@gnu.org>
* snprintf.c: Doc fix.
* vsnprintf.c: Doc fix.
2009-05-29 Kai Tietz <kai.tietz@onevision.com>
2009-05-29 Kai Tietz <kai.tietz@onevision.com>
* pex-win32.c (pex_win32_fdopenr): Set INHERIT to false.
* pex-win32.c (pex_win32_fdopenr): Set INHERIT to false.
...
...
libiberty/snprintf.c
View file @
ec5c6f4a
...
@@ -27,13 +27,15 @@ the executable file might be covered by the GNU General Public License. */
...
@@ -27,13 +27,15 @@ the executable file might be covered by the GNU General Public License. */
@deftypefn Supplemental int snprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, ...)
@deftypefn Supplemental int snprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, ...)
This function is similar to sprintf, but it will print at most @var{n}
This function is similar to @code{sprintf}, but it will write to
characters. On error the return value is -1, otherwise it returns the
@var{buf} at most @code{@var{n}-1} bytes of text, followed by a
number of characters that would have been printed had @var{n} been
terminating null byte, for a total of @var{n} bytes.
sufficiently large, regardless of the actual value of @var{n}. Note
On error the return value is -1, otherwise it returns the number of
some pre-C99 system libraries do not implement this correctly so users
bytes, not including the terminating null byte, that would have been
cannot generally rely on the return value if the system version of
written had @var{n} been sufficiently large, regardless of the actual
this function is used.
value of @var{n}. Note some pre-C99 system libraries do not implement
this correctly so users cannot generally rely on the return value if
the system version of this function is used.
@end deftypefn
@end deftypefn
...
...
libiberty/vsnprintf.c
View file @
ec5c6f4a
...
@@ -27,13 +27,15 @@ the executable file might be covered by the GNU General Public License. */
...
@@ -27,13 +27,15 @@ the executable file might be covered by the GNU General Public License. */
@deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
@deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
This function is similar to vsprintf, but it will print at most
This function is similar to @code{vsprintf}, but it will write to
@var{n} characters. On error the return value is -1, otherwise it
@var{buf} at most @code{@var{n}-1} bytes of text, followed by a
returns the number of characters that would have been printed had
terminating null byte, for a total of @var{n} bytes. On error the
@var{n} been sufficiently large, regardless of the actual value of
return value is -1, otherwise it returns the number of characters that
@var{n}. Note some pre-C99 system libraries do not implement this
would have been printed had @var{n} been sufficiently large,
correctly so users cannot generally rely on the return value if the
regardless of the actual value of @var{n}. Note some pre-C99 system
system version of this function is used.
libraries do not implement this correctly so users cannot generally
rely on the return value if the system version of this function is
used.
@end deftypefn
@end deftypefn
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment