aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/printf.h
blob: b4e1c1b1e49894bb045beb9eb4a846919b06dcde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);

/* vim: set ts=4 sw=4 tw=0 noet :*/