light/modules/lsd/str.cppm
light7734 72662f3742
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: feat: lsd
2025-11-17 13:17:05 +03:30

15 lines
248 B
C++

export module lsd.str;
import std;
export namespace lt::lsd {
using c_str = const char *;
using str = std::string;
using str_view = std::string_view;
template<typename... T>
using format_str = std::format_string<T...>;
} // namespace lt::lsd