vsnprintf
Default mainpageat91libutilityvsnprintf
Description Source Call Graph
vsnprintf
Stores the result of a formatted string into another string.
 
Syntax / parameters
signed int vsnprintf (char *pStr, size_t length, const char *pFormat, va_list ap)

Name Type Default Description
pStr char *
  Destination string.
length size_t
  Length of Destination string.
pFormat const char *
  Format string.
ap va_list
  Argument list.
 
Return value signed int
   
Description
Stores the result of a formatted string into another string.
Format arguments are given in a va_list instance. Return the number of characters written.
 
Source
The documentation for this Member was generated from the following file:
  • stdio.c