| 2054 | } |
| 2055 | |
| 2056 | String String::utf8(const char* p_utf8, int p_len) |
| 2057 | { |
| 2058 | String ret; |
| 2059 | ret.parse_utf8(p_utf8, p_len); |
| 2060 | |
| 2061 | return ret; |
| 2062 | } |
| 2063 | |
| 2064 | Error String::parse_utf8(const char* p_utf8, int p_len, bool p_skip_cr) |
| 2065 | { |
no test coverage detected