| 253 | } |
| 254 | |
| 255 | const 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 | |
| 269 | int iniSectionsCount(const char *section) |
| 270 | { |
no test coverage detected