diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-10 10:46:54 -0400 |
commit | 00f84e3b984904e36cbee502a470003ecd7d09cf (patch) | |
tree | 48836b7af6dc55724f789a75ebed4a7ce01be5fc /attr/string.hpp | |
parent | e6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff) |
initial upload
Diffstat (limited to 'attr/string.hpp')
-rw-r--r-- | attr/string.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/attr/string.hpp b/attr/string.hpp new file mode 100644 index 0000000..d7e1fcb --- /dev/null +++ b/attr/string.hpp @@ -0,0 +1,24 @@ +#ifndef MBUOY_ATTR_STRING_HPP +#define MBUOY_ATTR_STRING_HPP + +namespace mbuoy { + +template<int N> +struct string +{ + consteval string(const char (&s_)[N]) { + for (int i = 0; i < N; ++i) + s[i] = s_[i]; + } + + consteval operator const char *() const { + return s; + } + + char s[N]; +}; + +} // namespace mbuoy + +#endif // MBUOY_ATTR_STRING_HPP + |