| 267 | } |
| 268 | |
| 269 | int 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 | |
| 287 | BOOL liner(const char *src, const char *dst, linerRule_t *rules) |
| 288 | { |
no outgoing calls
no test coverage detected