| 53 | } |
| 54 | |
| 55 | static const char *check_funcptr(const char *type) |
| 56 | { |
| 57 | const char *str = strstr(type, "(*)"); |
| 58 | if (str) |
| 59 | { |
| 60 | return str + 2; |
| 61 | } |
| 62 | |
| 63 | return NULL; |
| 64 | } |
| 65 | |
| 66 | static const char *check_array(const char *type) |
| 67 | { |
no test coverage detected