MCPcopy Create free account
hub / github.com/JHRobotics/softgpu / iniValueDef

Function iniValueDef

winini.c:241–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241const char *iniValueDef(const char *section, const char *variable, const char *defvalue)
242{
243 const char *val = iniValue(section, variable);
244 if(val)
245 {
246 if(strlen(val) > 0)
247 {
248 return val;
249 }
250 }
251
252 return defvalue;
253}
254
255const char *iniSectionsValueDef(const char *section, int section_num, const char *variable, const char *defvalue)
256{

Callers 2

aboutFunction · 0.85
getSettingsLevelFunction · 0.85

Calls 1

iniValueFunction · 0.85

Tested by

no test coverage detected