blob: bae576370e8e37289e8aabe66ab95583305134ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|