12345678910111213141516171819202122232425262728293031 |
- #ifndef PHPDBG_OPCODE_H
- #define PHPDBG_OPCODE_H
- #include "zend_types.h"
- const char *phpdbg_decode_opcode(zend_uchar);
- char *phpdbg_decode_opline(zend_op_array *ops, zend_op *op, HashTable *vars TSRMLS_DC);
- void phpdbg_print_opline(zend_execute_data *execute_data, zend_bool ignore_flags TSRMLS_DC);
- void phpdbg_print_opline_ex(zend_execute_data *execute_data, HashTable *vars, zend_bool ignore_flags TSRMLS_DC);
- #endif
|