tagged release 0.7.1
[parrot.git] / compilers / pirc / new / piryy.h
blob0986d7cbce90ea3ed8674a7693057639e54991b3
1 /*
2 * $Id$
3 * Copyright (C) 2008, The Perl Foundation.
4 */
6 /* This file declared parser/lexer related functions, so that any changes
7 * need only be made once.
8 */
10 #ifndef PARROT_PIR_PIRYY_H_GUARD
11 #define PARROT_PIR_PIRYY_H_GUARD
14 int yyparse(yyscan_t yyscanner, lexer_state * const lexer);
15 int yyerror(yyscan_t yyscanner, lexer_state * const lexer, char const * const message, ...);
17 #endif /* PARROT_PIR_PIRYY_H_GUARD */
20 * Local variables:
21 * c-file-style: "parrot"
22 * End:
23 * vim: expandtab shiftwidth=4: