| 2871 | } |
| 2872 | |
| 2873 | static void skip_multiline_comment(char **input) |
| 2874 | { |
| 2875 | *input += static_strlen("/*"); |
| 2876 | |
| 2877 | for (; (*input)[0] != '\0'; ++(*input)) |
| 2878 | { |
| 2879 | if (((*input)[0] == '*') && ((*input)[1] == '/')) |
| 2880 | { |
| 2881 | *input += static_strlen("*/"); |
| 2882 | return; |
| 2883 | } |
| 2884 | } |
| 2885 | } |
| 2886 | |
| 2887 | static void minify_string(char **input, char **output) { |
| 2888 | (*output)[0] = (*input)[0]; |
no outgoing calls
no test coverage detected
searching dependent graphs…