vsprintf
Default mainpageat91libutilityvsprintf
Description Source Call Graph
vsprintf
Stores the result of a formatted string into another string.
 
Syntax / parameters
signed int vsprintf (char *pString, const char *pFormat, va_list ap)

Name Type Default Description
pString char *
  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