MCPcopy Create free account
hub / github.com/MyGUI/mygui / parseDouble

Function parseDouble

MyGUIEngine/src/msdfgen/main.cpp:93–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93static bool parseDouble(double &value, const char *arg) {
94 char *end = NULL;
95 value = strtod(arg, &end);
96 return end > arg && !*end;
97}
98
99static bool parseAngle(double &value, const char *arg) {
100 char *end = NULL;

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected