Root/
| 1 | #include <stdarg.h> |
| 2 | #include <stdbool.h> |
| 3 | |
| 4 | #ifndef NULL |
| 5 | #define NULL ((void *)0) |
| 6 | #endif |
| 7 | |
| 8 | void at91_init_uarts(void); |
| 9 | int puts(const char *str); |
| 10 | int putc(int c); |
| 11 | int putchar(int c); |
| 12 | int getc(); |
| 13 | |
| 14 | int strlen(const char *str); |
| 15 | |
| 16 | int hvfprintf(const char *fmt, va_list ap); |
| 17 | |
| 18 | int printf(const char *fmt, ...); |
| 19 |
