summaryrefslogtreecommitdiff
path: root/src/utils/string.hpp
blob: cfee5b7f014712d9a5eab2839297e7514c3283f1 (plain)
1
2
3
4
5
6
7
#pragma once
#include <string>
#include <vector>

namespace silly::editor::utils {
  std::vector<std::string> split_text(const std::string &text, char delimiter);
}