12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef PHPDBG_BREAK_H
- #define PHPDBG_BREAK_H
- #include "TSRM.h"
- #include "phpdbg_cmd.h"
- #define PHPDBG_BREAK(name) PHPDBG_COMMAND(break_##name)
- PHPDBG_BREAK(at);
- PHPDBG_BREAK(del);
- extern const phpdbg_command_t phpdbg_break_commands[];
- #endif
|