Platform-independent strcasecmp
| 57 | |
| 58 | /// Platform-independent strcasecmp |
| 59 | static inline int Strncasecmp(const char* s1, const char* s2, std::size_t n) |
| 60 | { |
| 61 | #ifdef _MSC_VER |
| 62 | return _strnicmp(s1, s2, n); |
| 63 | #else |
| 64 | return strncasecmp(s1, s2, n); |
| 65 | #endif |
| 66 | } |
| 67 | |
| 68 | /// Wrapper around std::from_chars |
| 69 | template <typename T> |
no outgoing calls
no test coverage detected