(ty: &str)
| 929 | } |
| 930 | |
| 931 | pub fn get_const_pointer_inner(ty: &str) -> Option<&str> { |
| 932 | if is_const_pointer_ty(ty) { |
| 933 | return get_pointer_inner(ty); |
| 934 | } |
| 935 | None |
| 936 | } |
| 937 | |
| 938 | /// Strip all sugars or qualifiers in type declaration. e.g, const aom_codec_iter_t ** => aom_codec_iter_t |
| 939 | pub fn get_unsugared_unqualified_type(c_type: &str) -> String { |
no test coverage detected