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

Function is_integeral_pointer

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

Source from the content-addressed store, hash-verified

849 }
850
851 pub fn is_integeral_pointer(ty: &str) -> bool {
852 if let Some(inner) = get_pointer_inner(ty) {
853 if is_integer_ty(inner) {
854 return true;
855 }
856 }
857 false
858 }
859
860 /// Whether this ty is array and is able to receive fuzzer's mutable bytes (considered as fuzzable).
861 /// 1. must be const qualified array.

Callers 1

Calls 2

get_pointer_innerFunction · 0.85
is_integer_tyFunction · 0.85

Tested by

no test coverage detected