MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / readfloatx

Function readfloatx

src/debug.cpp:949–959  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

947}
948
949static 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
962static bool readintx (TCHAR **c, uae_u32 *valp)

Callers 1

checkvaltype2Function · 0.85

Calls 1

doubletof80Function · 0.85

Tested by

no test coverage detected