(ty: &str)
| 783 | } |
| 784 | |
| 785 | pub fn is_unsigned_integer_ty(ty: &str) -> bool { |
| 786 | matches!( |
| 787 | ty, |
| 788 | "uint8_t" |
| 789 | | "uint16_t" |
| 790 | | "uint32_t" |
| 791 | | "uint64_t" |
| 792 | | "unsigned short" |
| 793 | | "unsigned int" |
| 794 | | "unsigned long" |
| 795 | | "unsigned long long" |
| 796 | ) |
| 797 | } |
| 798 | |
| 799 | pub fn is_mut_pointer_ty(ty: &str) -> bool { |
| 800 | ty.starts_with("FuzzMutPointer") |
no outgoing calls
no test coverage detected