git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: standard vga support (mode switching, framebuffer remapping)
[lunaix-os.git]
/
lunaix-os
/
includes
/
klibc
/
stdio.h
1
#ifndef __LUNAIX_STDIO_H
2
#define __LUNAIX_STDIO_H
3
#include <stdarg.h>
4
#include <stddef.h>
5
6
size_t
7
__ksprintf_internal(char* buffer,
8
const char* fmt,
9
size_t max_len,
10
va_list vargs);
11
12
size_t
13
ksprintf(char* buffer, char* fmt, ...);
14
size_t
15
ksnprintf(char* buffer, size_t n, char* fmt, ...);
16
#endif /* __LUNAIX_STDIO_H */