MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / is_unsigned_integer_ty

Function is_unsigned_integer_ty

src/program/gadget.rs:785–797  ·  view source on GitHub ↗
(ty: &str)

Source from the content-addressed store, hash-verified

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")

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected