(rout)
| 68 | return vardef |
| 69 | |
| 70 | def useiso_c_binding(rout): |
| 71 | useisoc = False |
| 72 | for key, value in rout['vars'].items(): |
| 73 | kind_value = value.get('kindselector', {}).get('kind') |
| 74 | if kind_value in isoc_kindmap: |
| 75 | return True |
| 76 | return useisoc |
| 77 | |
| 78 | def createfuncwrapper(rout, signature=0): |
| 79 | assert isfunction(rout) |
no test coverage detected