aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/fmt.h
blob: 5c457030a0a8dbe135a5881c3b286a0b145032ed (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <string>

namespace crepe::util {

std::string va_stringf(va_list args, const char * fmt);
std::string stringf(const char * fmt, ...);

}