| 226 | } |
| 227 | |
| 228 | float parseFloat(const ccstd::string &str) { |
| 229 | return strtof(str.c_str(), nullptr); |
| 230 | } |
| 231 | |
| 232 | int64_t parseInt(const ccstd::string &str, uint8_t base = 10) { |
| 233 | return strtoll(str.c_str(), nullptr, base); |
no outgoing calls
no test coverage detected