| 2778 | } |
| 2779 | |
| 2780 | static void skip_oneline_comment(char **input) |
| 2781 | { |
| 2782 | *input += static_strlen("//"); |
| 2783 | |
| 2784 | for (; (*input)[0] != '\0'; ++(*input)) |
| 2785 | { |
| 2786 | if ((*input)[0] == '\n') { |
| 2787 | *input += static_strlen("\n"); |
| 2788 | return; |
| 2789 | } |
| 2790 | } |
| 2791 | } |
| 2792 | |
| 2793 | static void skip_multiline_comment(char **input) |
| 2794 | { |