123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef PHPDBG_LEXER_H
- #define PHPDBG_LEXER_H
- #include "phpdbg_cmd.h"
- typedef struct {
- unsigned int len;
- unsigned char *text;
- unsigned char *cursor;
- unsigned char *marker;
- unsigned char *ctxmarker;
- int state;
- } phpdbg_lexer_data;
- #define yyparse phpdbg_parse
- #define yylex phpdbg_lex
- void phpdbg_init_lexer (phpdbg_param_t *stack, char *input);
- int phpdbg_lex (phpdbg_param_t* yylval);
- #endif
|