blob: 67b87e2f024ce7c2c513563101500eae8954d238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "strerror.hpp"
#include <errno.h>
#include <string.h>
namespace floormat {
StringView get_error_string(ArrayView<char> buf)
{
#ifndef _WIN32
if constexpr(std::is_same_v<char*, std::decay_t<decltype(::strerror_r(errno, buf.data(), buf.size()))>>)
{
const char* str { ::strerror_r(errno, buf.data(), buf.size()) };
if (str)
return str;
}
else
{
const int status { ::strerror_r(errno, buf.data(), buf.size()) };
if (status == 0)
return buf;
}
#else
::strerror_s(buf.data(), buf.size(), errno);
if (buf[0])
return buf;
#endif
return "Unknown error"_s;
};
} // namespace floormat
|