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

#include <stdlib.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);