(ctx: *mut c_void)
| 386 | } |
| 387 | |
| 388 | pub unsafe extern "C" fn push_stack(ctx: *mut c_void) { |
| 389 | let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm }; |
| 390 | vm.env.as_mut_any().downcast_mut::<FuzzwareEnvironment>().unwrap().push_stack(&mut vm.cpu); |
| 391 | } |
| 392 | |
| 393 | pub unsafe extern "C" fn pop_stack(ctx: *mut c_void) { |
| 394 | let vm = unsafe { &mut *(*ctx.cast::<Context>()).vm }; |
nothing calls this directly
no test coverage detected