(decl, prefix)
| 306 | return s |
| 307 | |
| 308 | def funcdecl_result_c(decl, prefix): |
| 309 | func_name = decl['name'] |
| 310 | decl_type = decl['type'] |
| 311 | result_type = check_override(f'{func_name}.RESULT', default=decl_type[:decl_type.index('(')].strip()) |
| 312 | return as_c_arg_type(result_type, prefix) |
| 313 | |
| 314 | def gen_struct(decl, namespace): |
| 315 | global struct_types |
nothing calls this directly
no test coverage detected