blob: 61215bc7f3e304c8ca3173c6ccfb1408d96173b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// Copyright (c) 2020 Johannes Stoelp
#pragma once
#include <stdarg.h>
int vfmt(char* buf, unsigned long len, const char* fmt, va_list ap);
int fmt(char* buf, unsigned long len, const char* fmt, ...);
|