Files
mango/libc/include/kernel/libc/stdio.h
2026-02-19 19:21:15 +00:00

22 lines
401 B
C

#ifndef KERNEL_STDIO_H_
#define KERNEL_STDIO_H_
#include <stdarg.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
int snprintf(char *buffer, size_t count, const char *format, ...);
int vsnprintf(char *buffer, size_t count, const char *format, va_list va);
int fctprintf(void (*out)(char character, void *arg), void *arg, const char*format, ...);
#ifdef __cplusplus
}
#endif
#endif