| 2858 | } |
| 2859 | |
| 2860 | static void skip_oneline_comment(char **input) |
| 2861 | { |
| 2862 | *input += static_strlen("//"); |
| 2863 | |
| 2864 | for (; (*input)[0] != '\0'; ++(*input)) |
| 2865 | { |
| 2866 | if ((*input)[0] == '\n') { |
| 2867 | *input += static_strlen("\n"); |
| 2868 | return; |
| 2869 | } |
| 2870 | } |
| 2871 | } |
| 2872 | |
| 2873 | static void skip_multiline_comment(char **input) |
| 2874 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…