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

Function iniSectionsValueDef

winini.c:255–267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253}
254
255const char *iniSectionsValueDef(const char *section, int section_num, const char *variable, const char *defvalue)
256{
257 const char *val = iniSectionsValue(section, section_num, variable);
258 if(val)
259 {
260 if(strlen(val) > 0)
261 {
262 return val;
263 }
264 }
265
266 return defvalue;
267}
268
269int iniSectionsCount(const char *section)
270{

Callers 1

softgpu_window_createFunction · 0.85

Calls 1

iniSectionsValueFunction · 0.85

Tested by

no test coverage detected