ReactOS
0.4.15-dev-4614-ga5a6101
|
TRIO_PUBLIC int trio_vscanf TRIO_ARGS2 | ( | (format, args) | , |
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Print to standard output stream.
format | Formatting string. |
args | Arguments. |
Definition at line 3671 of file trio.c.
TRIO_PUBLIC int trio_scanfv TRIO_ARGS2 | ( | (format, args) | , |
TRIO_CONST char * | format, | ||
trio_pointer_t * | args | ||
) |
Print to standard output stream.
format | Formatting string. |
args | Arguments. |
Definition at line 3689 of file trio.c.
TRIO_PUBLIC int trio_vfscanf TRIO_ARGS3 | ( | (file, format, args) | , |
FILE * | file, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Print to file.
file | File pointer. |
format | Formatting string. |
args | Arguments. |
Definition at line 3739 of file trio.c.
TRIO_PUBLIC int trio_fscanfv TRIO_ARGS3 | ( | (file, format, args) | , |
FILE * | file, | ||
TRIO_CONST char * | format, | ||
trio_pointer_t * | args | ||
) |
Print to file.
file | File pointer. |
format | Formatting string. |
args | Arguments. |
Definition at line 3760 of file trio.c.
TRIO_PUBLIC int trio_vdscanf TRIO_ARGS3 | ( | (fd, format, args) | , |
int | fd, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Print to file descriptor.
fd | File descriptor. |
format | Formatting string. |
args | Arguments. |
Definition at line 3811 of file trio.c.
TRIO_PUBLIC int trio_dscanfv TRIO_ARGS3 | ( | (fd, format, args) | , |
int | fd, | ||
TRIO_CONST char * | format, | ||
trio_pointer_t * | args | ||
) |
Print to file descriptor.
fd | File descriptor. |
format | Formatting string. |
args | Arguments. |
Definition at line 3831 of file trio.c.
TRIO_PUBLIC int trio_vsprintf TRIO_ARGS3 | ( | (buffer, format, args) | , |
char * | buffer, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Print to string.
buffer | Output string. |
format | Formatting string. |
args | Arguments. |
Definition at line 3945 of file trio.c.
TRIO_PUBLIC int trio_sprintfv TRIO_ARGS3 | ( | (buffer, format, args) | , |
char * | buffer, | ||
TRIO_CONST char * | format, | ||
trio_pointer_t * | args | ||
) |
Print to string.
buffer | Output string. |
format | Formatting string. |
args | Arguments. |
Definition at line 3970 of file trio.c.
TRIO_PUBLIC int trio_vasprintf TRIO_ARGS3 | ( | (result, format, args) | , |
char ** | result, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Definition at line 4227 of file trio.c.
TRIO_PUBLIC int trio_vcprintf TRIO_ARGS4 | ( | (stream, closure, format, args) | , |
trio_outstream_t | stream, | ||
trio_pointer_t | closure, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
TRIO_PUBLIC int trio_cprintfv TRIO_ARGS4 | ( | (stream, closure, format, args) | , |
trio_outstream_t | stream, | ||
trio_pointer_t | closure, | ||
TRIO_CONST char * | format, | ||
void ** | args | ||
) |
TRIO_PUBLIC int trio_vsnprintfcat TRIO_ARGS4 | ( | (buffer, max, format, args) | , |
char * | buffer, | ||
size_t | max, | ||
TRIO_CONST char * | format, | ||
va_list | args | ||
) |
Print at most max
characters to string.
buffer | Output string. |
max | Maximum number of characters to print. |
format | Formatting string. |
args | Arguments. |
Definition at line 4032 of file trio.c.
TRIO_PUBLIC int trio_snprintfv TRIO_ARGS4 | ( | (buffer, max, format, args) | , |
char * | buffer, | ||
size_t | max, | ||
TRIO_CONST char * | format, | ||
trio_pointer_t * | args | ||
) |
Print at most max
characters to string.
buffer | Output string. |
max | Maximum number of characters to print. |
format | Formatting string. |
args | Arguments. |
Definition at line 4061 of file trio.c.
TRIO_PUBLIC int trio_scanf TRIO_VARGS2 | ( | (format, va_alist) | , |
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Print to standard output stream.
format | Formatting string. |
... | Arguments. |
Scan characters from standard input stream.
format | Formatting string. |
... | Arguments. |
Definition at line 3647 of file trio.c.
TRIO_PUBLIC int trio_fscanf TRIO_VARGS3 | ( | (file, format, va_alist) | , |
FILE * | file, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Print to file.
file | File pointer. |
format | Formatting string. |
... | Arguments. |
Definition at line 3712 of file trio.c.
TRIO_PUBLIC int trio_dscanf TRIO_VARGS3 | ( | (fd, format, va_alist) | , |
int | fd, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Print to file descriptor.
fd | File descriptor. |
format | Formatting string. |
... | Arguments. |
Definition at line 3785 of file trio.c.
TRIO_PUBLIC int trio_sprintf TRIO_VARGS3 | ( | (buffer, format, va_alist) | , |
char * | buffer, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Print to string.
buffer | Output string. |
format | Formatting string. |
... | Arguments. |
Definition at line 3917 of file trio.c.
TRIO_PUBLIC int trio_asprintf TRIO_VARGS3 | ( | (result, format, va_alist) | , |
char ** | result, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Definition at line 4191 of file trio.c.
TRIO_PUBLIC int trio_cprintf TRIO_VARGS4 | ( | (stream, closure, format, va_alist) | , |
trio_outstream_t | stream, | ||
trio_pointer_t | closure, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
TRIO_PUBLIC int trio_snprintfcat TRIO_VARGS4 | ( | (buffer, max, format, va_alist) | , |
char * | buffer, | ||
size_t | max, | ||
TRIO_CONST char * | format, | ||
TRIO_VA_DECL | |||
) |
Print at most max
characters to string.
buffer | Output string. |
max | Maximum number of characters to print. |
format | Formatting string. |
... | Arguments. |
Definition at line 4000 of file trio.c.