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

Method append_uchar_var

src/program/shim.rs:126–133  ·  view source on GitHub ↗
(&mut self, char: u8)

Source from the content-addressed store, hash-verified

124 }
125
126 fn append_uchar_var(&mut self, char: u8) {
127 let var = format!(
128 "FDPConsumeUChar(fuzz_uchar_{}, fdp);",
129 self.get_fuzz_id_inc()
130 );
131 self.fuzz_stmts.push(var);
132 self.append_fuzz_seeds(&[char]);
133 }
134
135 pub fn append_uchar_vars(&mut self, chars: Vec<u8>) {
136 for char in chars {

Callers 1

append_uchar_varsMethod · 0.80

Calls 2

append_fuzz_seedsMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected