(&mut self, chars: Vec<u8>)
| 148 | } |
| 149 | |
| 150 | pub fn append_uchar_array(&mut self, chars: Vec<u8>) { |
| 151 | let var = format!("FDPConsumeCharArray(unsigned char, fuzz_char_array_{0}, fuzz_char_array_size_{0}, fdp);", self.get_fuzz_id_inc()); |
| 152 | self.fuzz_stmts.push(var); |
| 153 | self.append_fuzz_seeds_with_magic(chars.as_slice()); |
| 154 | } |
| 155 | |
| 156 | fn append_float_var(&mut self, f: f32) { |
| 157 | let var = format!( |
nothing calls this directly
no test coverage detected