| 7 | namespace Valdi { |
| 8 | |
| 9 | static StringBox getEnv(const char* name) { |
| 10 | const char* v = std::getenv(name); |
| 11 | if (v == nullptr) { |
| 12 | return StringBox(); |
| 13 | } |
| 14 | return StringBox::fromCString(v); |
| 15 | } |
| 16 | |
| 17 | std::vector<StringBox> LocaleResolver::getPreferredLocales() { |
| 18 | // 1. LC_ALL has absolute priority and is a single locale |
no test coverage detected