123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef PHPDBG_HELP_H
- #define PHPDBG_HELP_H
- #include "TSRM.h"
- #include "phpdbg.h"
- #include "phpdbg_cmd.h"
- #define PHPDBG_HELP(name) PHPDBG_COMMAND(help_##name)
- PHPDBG_HELP(aliases);
- extern const phpdbg_command_t phpdbg_help_commands[];
- #define phpdbg_help_header() \
- phpdbg_notice("Welcome to phpdbg, the interactive PHP debugger, v%s", PHPDBG_VERSION);
- #define phpdbg_help_footer() \
- phpdbg_notice("Please report bugs to <%s>", PHPDBG_ISSUES);
- typedef struct _phpdbg_help_text_t {
- char *key;
- char *text;
- } phpdbg_help_text_t;
- extern phpdbg_help_text_t phpdbg_help_text[];
- #endif
|