aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/fmt.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-21 10:42:10 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-21 10:42:10 +0200
commit157cdabe941be14ca72022e7a7c8c55a582a7c1c (patch)
treeca09caaa0b4a8ec8ba7c6a109445be4339f08cb1 /src/crepe/util/fmt.h
parent58dfdba241b501d4b1b9688b44ee775507ec325b (diff)
parent0fdebc7d7a143ad2b9b5ed6a596bf4bb1f0f7d7f (diff)
merge loek/scripts into loek/config
Diffstat (limited to 'src/crepe/util/fmt.h')
-rw-r--r--src/crepe/util/fmt.h10
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