9 extern int putchar (
int character );
36 #define sprintf( buf, fmt, ... ) \ 37 snprintf ( (buf), ~( ( size_t ) 0 ), (fmt), ## __VA_ARGS__ ) int printf(const char *fmt,...)
Write a formatted string to the console.
int int size_t const char int const char int vprintf(const char *fmt, va_list args)
Write a formatted string to the console.
static int vsprintf(char *buf, const char *fmt, va_list args)
Write a formatted string to a buffer.
A 16-bit general register.
int getchar(void)
Read a single character from any console.
int vasprintf(char **strp, const char *fmt, va_list args)
Write a formatted string to newly allocated memory.
int asprintf(char **strp, const char *fmt,...)
Write a formatted string to newly allocated memory.
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
Write a formatted string to a buffer.
__builtin_va_list va_list
int int size_t const char * fmt
int __attribute__((format(printf, 1, 2))) printf(const char *fmt
int snprintf(char *buf, size_t size, const char *fmt,...)
Write a formatted string to a buffer.
int putchar(int character)
Write a single character to each console device.
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)