|
Lazuli
|
stdio standard header file. More...
#include <Lazuli/common.h>Go to the source code of this file.
Macros | |
| #define | EOF ((int)-1) |
| Defines the End-Of-File constant. | |
Functions | |
| int | printf (const char *format,...) |
| Produce unbuffered formatted output to the serial line. | |
| int | putchar (int c) |
| Transmit a single character on the serial line. | |
| int | puts (const char *s) |
Transmit the NUL-terminated string s followed by a trailing newline on the serial line, without any formatting. | |
stdio standard header file.
This is the standard libc stdio header file for the Lazuli system.
Definition in file stdio.h.
| int printf | ( | const char * | format, |
| ... | |||
| ) |
Produce unbuffered formatted output to the serial line.
This function is fully reentrant.
0 The value should be zero-padded.
A decimal digit string can be used to specify a minimum field width.
The following conversion specifiers are currently allowed:
d, i The int argument is converted to decimal.
u The unsigned int argument is converted to decimal.
% The character '' is output.
| format | The format string. |
| ... | The variadic parameters. |
| int putchar | ( | int | c | ) |
Transmit a single character on the serial line.
| c | The character to transmit, that will be cast to an unsigned char. |
| int puts | ( | const char * | s | ) |
Transmit the NUL-terminated string s followed by a trailing newline on the serial line, without any formatting.
| s | The string to transmit. |