feat: kprintf now goes into dedicated pseudo-dev rather than flooding the framebuffer
[lunaix-os.git] / lunaix-os / includes / klibc / strfmt.h
1 #ifndef __LUNAIX_STRFMT_H
2 #define __LUNAIX_STRFMT_H
3 #include <stdarg.h>
4 #include <stddef.h>
5
6 size_t
7 ksnprintfv(char* buffer, const char* fmt, size_t max_len, va_list vargs);
8
9 size_t
10 ksprintf(char* buffer, char* fmt, ...);
11 size_t
12 ksnprintf(char* buffer, size_t n, char* fmt, ...);
13 #endif /* __LUNAIX_STRFMT_H */