diff options
Diffstat (limited to 'src/crepe/util/fmt.h')
-rw-r--r-- | src/crepe/util/fmt.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/crepe/util/fmt.h b/src/crepe/util/fmt.h new file mode 100644 index 0000000..44c426f --- /dev/null +++ b/src/crepe/util/fmt.h @@ -0,0 +1,10 @@ +#pragma once + +#include <string> + +namespace crepe::util { + +std::string va_stringf(va_list args, const char * fmt); +std::string stringf(const char * fmt, ...); + +} // namespace crepe::util |