#include <zephyr/toolchain.h>
#include <stdarg.h>
#include <stddef.h>
Go to the source code of this file.
|
int | printf (const char *ZRESTRICT format,...) |
|
int | snprintf (char *ZRESTRICT str, size_t len, const char *ZRESTRICT format,...) |
|
int | sprintf (char *ZRESTRICT str, const char *ZRESTRICT format,...) |
|
int | fprintf (FILE *ZRESTRICT stream, const char *ZRESTRICT format,...) |
|
int | vprintf (const char *ZRESTRICT format, va_list list) |
|
int | vsnprintf (char *ZRESTRICT str, size_t len, const char *ZRESTRICT format, va_list list) |
|
int | vsprintf (char *ZRESTRICT str, const char *ZRESTRICT format, va_list list) |
|
int | vfprintf (FILE *ZRESTRICT stream, const char *ZRESTRICT format, va_list ap) |
|
void | perror (const char *s) |
|
int | puts (const char *s) |
|
int | fputc (int c, FILE *stream) |
|
int | fputs (const char *ZRESTRICT s, FILE *ZRESTRICT stream) |
|
size_t | fwrite (const void *ZRESTRICT ptr, size_t size, size_t nitems, FILE *ZRESTRICT stream) |
|
int | remove (const char *path) |
|
◆ EOF
◆ putc
#define putc |
( |
| c, |
|
|
| stream ) |
Value:
int fputc(int c, FILE *stream)
◆ putchar
Value:
#define putc(c, stream)
Definition stdio.h:64
#define stdout
Definition stdio.h:30
◆ SEEK_CUR
#define SEEK_CUR 1 /* Seek from current position. */ |
◆ SEEK_END
#define SEEK_END 2 /* Seek from end of file. */ |
◆ SEEK_SET
#define SEEK_SET 0 /* Seek from beginning of file. */ |
◆ stderr
#define stderr ((FILE *) 3) |
◆ stdin
#define stdin ((FILE *) 1) |
◆ stdout
#define stdout ((FILE *) 2) |
◆ FILE
◆ fprintf()
◆ fputc()
int fputc |
( |
int | c, |
|
|
FILE * | stream ) |
◆ fputs()
◆ fwrite()
◆ perror()
void perror |
( |
const char * | s | ) |
|
◆ printf()
int printf |
( |
const char *ZRESTRICT | format, |
|
|
| ... ) |
◆ puts()
int puts |
( |
const char * | s | ) |
|
◆ remove()
int remove |
( |
const char * | path | ) |
|
◆ snprintf()
◆ sprintf()
◆ vfprintf()
◆ vprintf()
int vprintf |
( |
const char *ZRESTRICT | format, |
|
|
va_list | list ) |
◆ vsnprintf()
◆ vsprintf()