Architectural Support: x86_64 (#37)
[lunaix-os.git] / lunaix-os / usr / libc / includes / stdio.h
1 #ifndef __LUNAIX_USTDIO_H
2 #define __LUNAIX_USTDIO_H
3
4 #include <stdarg.h>
5
6 #define stdout 0
7 #define stdin 1
8
9 int
10 printf(const char* fmt, ...);
11
12 int
13 vsnprintf(char* buffer, unsigned int size, const char* fmt, va_list ap);
14
15 int
16 snprintf(char* buffer, unsigned int size, const char* fmt, ...);
17
18 #endif /* __LUNAIX_USTDIO_H */