10extern int putchar (
int character );
37#define sprintf( buf, fmt, ... ) \
38 snprintf ( (buf), ~( ( size_t ) 0 ), (fmt), ## __VA_ARGS__ )
int asprintf(char **strp, const char *fmt,...)
Write a formatted string to newly allocated memory.
int vasprintf(char **strp, const char *fmt, va_list args)
Write a formatted string to newly allocated memory.
uint16_t size
Buffer size.
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
__builtin_va_list va_list
int getchar(void)
Read a single character from any console.
static int vsprintf(char *buf, const char *fmt, va_list args)
Write a formatted string to a buffer.
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
Write a formatted string to a buffer.
int putchar(int character)
Write a single character to each console device.
int printf(const char *fmt,...)
Write a formatted string to the console.
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
Write a formatted string to a buffer.
int vprintf(const char *fmt, va_list args)
Write a formatted string to the console.
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
int ssize_t const char * fmt