Zen C++ Libraries
Zero-dependency re-usable components for C++
Loading...
Searching...
No Matches
string.hpp
Go to the documentation of this file.
1
3
4#ifndef ZEN_STRING_HPP
5#define ZEN_STRING_HPP
6
7#include <cstdint>
8#include <string>
9
10#include "zen/config.hpp"
11
12ZEN_NAMESPACE_START
13
14using string = std::basic_string<std::uint32_t>;
15
16ZEN_NAMESPACE_END
17
18#endif // of #ifndef ZEN_STRING_HPP