| 89 | } |
| 90 | |
| 91 | LPCSTR FS_Path::_update(string_path& dest, LPCSTR src) const |
| 92 | { |
| 93 | R_ASSERT(dest); |
| 94 | R_ASSERT(src); |
| 95 | string_path temp; |
| 96 | strcpy_s(temp, sizeof(temp), src); |
| 97 | strconcat(sizeof(dest), dest, m_Path, temp); |
| 98 | return xr_strlwr(dest); |
| 99 | } |
| 100 | |
| 101 | bool XRCORE_API pattern_match(LPCSTR s, LPCSTR mask) |
| 102 | { |
no test coverage detected