| 640 | } |
| 641 | |
| 642 | int cmark_node_get_start_line(cmark_node *node) { |
| 643 | if (node == NULL) { |
| 644 | return 0; |
| 645 | } |
| 646 | return node->start_line; |
| 647 | } |
| 648 | |
| 649 | int cmark_node_get_start_column(cmark_node *node) { |
| 650 | if (node == NULL) { |
no outgoing calls
no test coverage detected