(self, fn: FuncDecl)
| 391 | return self.c_undefined_value(rtype) |
| 392 | |
| 393 | def native_function_name(self, fn: FuncDecl) -> str: |
| 394 | return f"{NATIVE_PREFIX}{fn.cname(self.names)}" |
| 395 | |
| 396 | def native_function_call(self, fn: FuncDecl) -> str: |
| 397 | """Return the C expression for a call to `fn`'s native (CPyDef_) entry. |
no test coverage detected