Bypass comment and empty lines */
| 518 | |
| 519 | /* Bypass comment and empty lines */ |
| 520 | static int |
| 521 | skip_line(const char *buf) |
| 522 | { |
| 523 | uint32_t i; |
| 524 | |
| 525 | for (i = 0; isspace(buf[i]) != 0; i++) |
| 526 | ; |
| 527 | |
| 528 | if (buf[i] == 0 || buf[i] == COMMENT_LEAD_CHAR) |
| 529 | return 1; |
| 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static void |
| 535 | tracef_init(void) |
no test coverage detected