aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/printf.h
blob: b37816d20f9c6755341f3ff2d3ac5050e212f5a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once

#include <stddef.h>
#include <stdint.h>
#include <stdarg.h>

int snprintf(char* s, size_t n, const char* format, ...);
int vsnprintf(char* s, size_t n, const char* format, va_list arg);