blob: 452ad661af62871f758f76819c10eef6910fae6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <string>
#include <vector>
namespace strings {
static constexpr const char * INTRO = R"(Voer de naam van een (.xml) bestand in
om hieruit een kerker te laden, of druk direct op ENTER om een kerker te
genereren.)";
}
void print_string(const char *);
std::string wrap_string(const char *);
std::vector<std::string> split_string(const std::string & src, const std::string & delim);
|