light/modules/lsd/str.cppm
light7734 b7ae2f7048
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: feat: lsd
2025-11-16 14:29:03 +03:30

16 lines
249 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