| 616 |
extern int printf_P(const char *__fmt, ...); |
extern int printf_P(const char *__fmt, ...); |
| 617 |
|
|
| 618 |
/** |
/** |
| 619 |
|
The function \c vprintf performs formatted output to stream |
| 620 |
|
\c stdout, taking a variable argument list as in vfprintf(). |
| 621 |
|
|
| 622 |
|
See vfprintf() for details. |
| 623 |
|
*/ |
| 624 |
|
extern int vprintf(const char *__fmt, va_list __ap); |
| 625 |
|
|
| 626 |
|
/** |
| 627 |
Variant of \c printf() that sends the formatted characters |
Variant of \c printf() that sends the formatted characters |
| 628 |
to string \c s. |
to string \c s. |
| 629 |
*/ |
*/ |
| 1009 |
extern int scanf_P(const char *__fmt, ...); |
extern int scanf_P(const char *__fmt, ...); |
| 1010 |
|
|
| 1011 |
/** |
/** |
| 1012 |
|
The function \c vscanf performs formatted input from stream |
| 1013 |
|
\c stdin, taking a variable argument list as in vfscanf(). |
| 1014 |
|
|
| 1015 |
|
See vfscanf() for details. |
| 1016 |
|
*/ |
| 1017 |
|
extern int vscanf(const char *__fmt, va_list __ap); |
| 1018 |
|
|
| 1019 |
|
/** |
| 1020 |
The function \c sscanf performs formatted input, reading the |
The function \c sscanf performs formatted input, reading the |
| 1021 |
input data from the buffer pointed to by \c buf. |
input data from the buffer pointed to by \c buf. |
| 1022 |
|
|