| 15 | ] |
| 16 | |
| 17 | class FuzzParcel(Structure): |
| 18 | _fields_ = [ |
| 19 | ("code", c_uint), |
| 20 | ("nr_entries", c_uint), |
| 21 | ("buf", POINTER(c_ubyte)), |
| 22 | ("buf_size", c_uint), |
| 23 | ("index", c_uint), |
| 24 | ("entries", POINTER(POINTER(ParcelData)) * MAX_ENTRIES) |
| 25 | ] |
| 26 | """ |
| 27 | LIB.init_fuzzparcel.argtypes = [POINTER(c_ubyte), c_size_t] |
| 28 | LIB.init_fuzzparcel.restype = POINTER(FuzzParcel) |
no outgoing calls
no test coverage detected