| 5415 | #endif /* NOT_NEEDED_YET */ |
| 5416 | |
| 5417 | static int |
| 5418 | xo_count_fields (xo_handle_t *xop UNUSED, const char *fmt) |
| 5419 | { |
| 5420 | int rc = 1; |
| 5421 | const char *cp; |
| 5422 | |
| 5423 | for (cp = fmt; *cp; cp++) |
| 5424 | if (*cp == '{' || *cp == '\n') |
| 5425 | rc += 1; |
| 5426 | |
| 5427 | return rc * 2 + 1; |
| 5428 | } |
| 5429 | |
| 5430 | /* |
| 5431 | * The field format is: |
no outgoing calls
no test coverage detected