aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/fmt.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 20:52:08 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 20:52:08 +0200
commitf9aa198eef7b85eeba3bac4c4fe2d4578b836bbf (patch)
tree3d374caa0510aa6389bd5901b83fe5b5b81d6dc1 /src/crepe/util/fmt.h
parent5d041cce13da66aa3457d236579a9ac90ebf7618 (diff)
WIP behavior script (problems)loek/scripts
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..5c45703
--- /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, ...);
+
+}