| 947 | } |
| 948 | |
| 949 | static bool readfloatx(TCHAR **c, debugfloatx80 *valx80) |
| 950 | { |
| 951 | TCHAR *endptr = nullptr; |
| 952 | const double dval = _tcstod(*c, &endptr); |
| 953 | if (endptr == *c) { |
| 954 | return false; |
| 955 | } |
| 956 | *c = endptr; |
| 957 | *valx80 = doubletof80(dval); |
| 958 | return true; |
| 959 | } |
| 960 | #endif |
| 961 | |
| 962 | static bool readintx (TCHAR **c, uae_u32 *valp) |
no test coverage detected