Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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