diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 18:29:44 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 18:29:44 +0200 |
commit | a070c649ddbe70a22f6265b9f5b48f6bde7eac08 (patch) | |
tree | 310c2a7f0ae51eff0172168673e64f50a01f01a1 /frontend/strings.h | |
parent | 6781cee55a4e7f232eae3e5f2a652045412339ae (diff) |
add readline cli routines
Diffstat (limited to 'frontend/strings.h')
-rw-r--r-- | frontend/strings.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/strings.h b/frontend/strings.h new file mode 100644 index 0000000..910eaa8 --- /dev/null +++ b/frontend/strings.h @@ -0,0 +1,16 @@ +#pragma once + +#include <string> + +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 *); + |