~ubuntu-branches/ubuntu/utopic/seyon/utopic

« back to all changes in this revision

Viewing changes to SeParse.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2001-12-19 17:24:13 UTC
  • Revision ID: james.westby@ubuntu.com-20011219172413-ukevp6lge5fw1vww
Tags: upstream-2.20c
ImportĀ upstreamĀ versionĀ 2.20c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <strings.h>
 
2
/*---------------------------------------------------------------------------+
 
3
| External parser interface
 
4
+---------------------------------------------------------------------------*/
 
5
extern void SignalBeginFunction();
 
6
extern void SignalArg();
 
7
extern void SignalEndFunction();
 
8
extern void ParseThis();
 
9
 
 
10
extern void yyerror();
 
11
 
 
12
/*---------------------------------------------------------------------------+
 
13
| Control and escape characters
 
14
+---------------------------------------------------------------------------*/
 
15
#define CTRL_CHAR '^'
 
16
#define BACK_CHAR '\\'
 
17
 
 
18
extern void scSetInputBuffer();
 
19
extern int yyparse();