| 194 | #endif |
| 195 | |
| 196 | static double |
| 197 | StringToDouble(const char* s, size_t n, int* out_processed) |
| 198 | { |
| 199 | if (n == -1ull) |
| 200 | n = strlen(s); |
| 201 | int processed; |
| 202 | double res = kJsonToDouble.StringToDouble(s, n, &processed); |
| 203 | if (out_processed) |
| 204 | *out_processed = processed; |
| 205 | return res; |
| 206 | } |
| 207 | |
| 208 | static char* |
| 209 | UlongToString(char* p, unsigned long long x) |
no outgoing calls
no test coverage detected
searching dependent graphs…