1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Sends formatted output to a string pointer (*str)
**/
int ;
/**
* Writes formatted output to a character array (*str) up to a maximum amount of
*characters (size)
**/
int ;
/**
* Writes formatted data from a variable arguments list (args) to a character
*array (*str)
**/
int ;
/**
* Writes formatted data from a variable argument list (args) to a sized buffer
*(str, size)
**/
int ;
/**
* Same as sprintf but allocates a string large enough to hold the output
*including the terminating null byte.
**/
int ;
/**
* Same as asprintf but writes formatted data from a variable argument list
*(args)
**/
int ;