You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
537 B
16 lines
537 B
struct PPltype {
|
|
const char *start, *stop;
|
|
};
|
|
|
|
extern int PPlex(YYSTYPE *lvalp, struct PPltype *llocp, char **line);
|
|
|
|
extern struct pnode *PP_mkunode(int op, struct pnode *arg);
|
|
extern struct pnode *PP_mkfnode(const char *func, struct pnode *arg);
|
|
extern struct pnode *PP_mknnode(double number);
|
|
extern struct pnode *PP_mkbnode(int opnum, struct pnode *arg1, struct pnode *arg2);
|
|
extern struct pnode *PP_mksnode(const char *string);
|
|
|
|
|
|
#if defined (_MSC_VER)
|
|
# define __func__ __FUNCTION__ /* __func__ is C99, but MSC can't */
|
|
#endif
|