(vartype)
| 45 | |
| 46 | |
| 47 | def is_funcptr(vartype): |
| 48 | if not vartype: |
| 49 | return None |
| 50 | _, _, _, _, abstract = _info.get_parsed_vartype(vartype) |
| 51 | return _is_funcptr(abstract) |
| 52 | |
| 53 | |
| 54 | def _is_funcptr(declstr): |
no test coverage detected
searching dependent graphs…