Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
93
static bool parseDouble(double &value, const char *arg) {
94
char *end = NULL;
95
value = strtod(arg, &end);
96
return end > arg && !*end;
97
}
98
99
static bool parseAngle(double &value, const char *arg) {
100
char *end = NULL;
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected