| 64 | } |
| 65 | |
| 66 | static const char *check_array(const char *type) |
| 67 | { |
| 68 | const char *str = strchr(type, '['); |
| 69 | if (str) |
| 70 | { |
| 71 | return str; |
| 72 | } |
| 73 | |
| 74 | return NULL; |
| 75 | } |
| 76 | |
| 77 | static void print_formalparm(FILE *stream, const char *argtype, int parmno) |
| 78 | { |
no test coverage detected