summaryrefslogtreecommitdiff
path: root/source/core/slang-string-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-string-util.h')
-rw-r--r--source/core/slang-string-util.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/core/slang-string-util.h b/source/core/slang-string-util.h
new file mode 100644
index 000000000..bae576370
--- /dev/null
+++ b/source/core/slang-string-util.h
@@ -0,0 +1,17 @@
+#ifndef SLANG_STRING_UTIL_H
+#define SLANG_STRING_UTIL_H
+
+#include "slang-string.h"
+#include "list.h"
+
+namespace Slang {
+
+struct StringUtil
+{
+ static void split(const UnownedStringSlice& in, char splitChar, List<UnownedStringSlice>& slicesOut);
+};
+
+} // namespace Slang
+
+
+#endif // SLANG_STRING_UTIL_H