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

Function iniSectionsCount

winini.c:269–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

267}
268
269int iniSectionsCount(const char *section)
270{
271 iniline_t *ptr = ini;
272 int n = 0;
273
274 while(ptr != NULL)
275 {
276 if(strcmp(section, ptr->data) == 0 && ptr->issection)
277 {
278 n++;
279 }
280
281 ptr = ptr->next;
282 }
283
284 return n;
285}
286
287BOOL liner(const char *src, const char *dst, linerRule_t *rules)
288{

Callers 2

device_ini_getFunction · 0.85
softgpu_window_createFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected