summaryrefslogtreecommitdiff
path: root/src/pkstr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkstr.hpp')
-rw-r--r--src/pkstr.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/pkstr.hpp b/src/pkstr.hpp
deleted file mode 100644
index 0f2fb0d..0000000
--- a/src/pkstr.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef PKE_STRING_HPP
-#define PKE_STRING_HPP
-
-#include <cstdint>
-
-struct pkstr {
- int64_t length = 0;
- char *val = nullptr;
-};
-struct cpkstr {
- int64_t length = 0;
- const char *val = nullptr;
-};
-
-pkstr to_pkstr(char *s);
-pkstr to_pkstr(const cpkstr &s);
-cpkstr to_cpkstr(const char *s);
-cpkstr to_cpkstr(const pkstr &s);
-
-#endif /* PKE_STRING_HPP */