dead simple printf/sprintf implementation.
[lunaix-os.git] / lunaix-os / includes / libc / stdio.h
1 #ifndef __LUNAIX_STDIO_H
2 #define __LUNAIX_STDIO_H
3 #include <stdarg.h>
4
5 #ifdef __LUNAIX_LIBC
6 void __sprintf_internal(char* buffer, char* fmt, va_list args);
7 #endif
8
9 void sprintf(char* buffer, char* fmt, ...);
10 void printf(char* fmt, ...);
11
12 #endif /* __LUNAIX_STDIO_H */