Blender V4.3
opensubdiv/internal/base/util.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2013 Blender Foundation
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#ifndef OPENSUBDIV_BASE_UTIL_H_
6#define OPENSUBDIV_BASE_UTIL_H_
7
8#include <string>
9#include <vector>
10
11namespace blender::opensubdiv {
12
13void stringSplit(std::vector<std::string> *tokens,
14 const std::string &str,
15 const std::string &separators,
16 bool skip_empty);
17
18} // namespace blender::opensubdiv
19
20#endif // OPENSUBDIV_BASE_UTIL_H_
#define str(s)
void stringSplit(std::vector< std::string > *tokens, const std::string &str, const std::string &separators, bool skip_empty)