Description
Source
Call Graph
snprintf
Stores the result of a formatted string into another string.


Syntax / parameters
signed int snprintf (char *pString, size_t length, const char *pFormat,...)
|
Name |
Type |
Default |
Description |
pString |
char *
|
|
Destination string.
|
length |
size_t
|
|
Length of Destination string.
|
pFormat |
const char *
|
|
Format string.
|
|
...
|
|
|
|
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