(s)
| 272 | return is_prim_ptr(s) and 'const' in s |
| 273 | |
| 274 | def is_struct_ptr(s): |
| 275 | c_type, _ = util.extract_ptr_type2(s) |
| 276 | return c_type in struct_types |
| 277 | |
| 278 | def is_const_struct_ptr(s): |
| 279 | return is_struct_ptr(s) and 'const' in s |
no outgoing calls
no test coverage detected