| 58 | return (unsigned int)strtoull(str.Buffer(), NULL, radix); |
| 59 | } |
| 60 | double StringToDouble(const String & str) |
| 61 | { |
| 62 | return (double)strtod(str.Buffer(), NULL); |
| 63 | } |
| 64 | float StringToFloat(const String & str) |
| 65 | { |
| 66 | return strtof(str.Buffer(), NULL); |
no test coverage detected