kern
view src/klibc/stdio.h @ 40:710739e33da8
- now read_rtc doesn't try to read weekday as it's probably wrong anyway, and doesn't set yearday either
- mktime now fixes yearday and weekday
- moved init_timer and init_rtc just before enabling the interrupts in main
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 12 Jun 2011 15:45:21 +0300 |
parents | ebe5e0e44a9d |
children |
line source
1 #ifndef STDIO_H_
2 #define STDIO_H_
4 #include <stdlib.h>
5 #include <stdarg.h>
7 int putchar(int c);
8 int puts(const char *s);
10 int printf(const char *fmt, ...);
11 int vprintf(const char *fmt, va_list ap);
13 int sprintf(char *buf, const char *fmt, ...);
14 int vsprintf(char *buf, const char *fmt, va_list ap);
16 int snprintf(char *buf, size_t sz, const char *fmt, ...);
17 int vsnprintf(char *buf, size_t sz, const char *fmt, va_list ap);
19 #endif /* STDIO_H_ */