OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [libiberty/] [snprintf.c] - Diff between revs 157 and 225

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 157 Rev 225
Line 25... Line 25...
 
 
/*
/*
 
 
@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
 
 
*/
*/
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.