You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

print.h 419B

123456789101112131415
  1. #ifndef L2_VM_PRINT_H
  2. #define L2_VM_PRINT_H
  3. #include "vm.h"
  4. void l2_vm_print_val(struct l2_vm_value *val);
  5. void l2_vm_print_state(struct l2_vm *vm);
  6. void l2_vm_print_heap(struct l2_vm *vm);
  7. void l2_vm_print_stack(struct l2_vm *vm);
  8. void l2_vm_print_fstack(struct l2_vm *vm);
  9. void l2_vm_print_op(unsigned char *ops, size_t opcount, size_t *ptr);
  10. void l2_vm_print_bytecode(unsigned char *ops, size_t opcount);
  11. #endif