~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to terps/alan2/parse.h

  • Committer: Package Import Robot
  • Author(s): Sylvain Beucler
  • Date: 2013-07-28 13:38:56 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130728133856-4k6uc864wzsnrx04
Tags: 2011.1a-1
* New upstream release
* Alan 2 interpreter is now Free Software, include it
* Update fonts package names in dependencies (Closes: #715160)
* Bump Standards-Version to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*----------------------------------------------------------------------*\
 
2
 
 
3
  PARSE.H
 
4
 
 
5
  Parse data for ALAN interpreter module.
 
6
 
 
7
\*----------------------------------------------------------------------*/
 
8
 
 
9
extern int wrds[];              /* List of Parsed Word */
 
10
extern int wrdidx;              /* and an index into it */
 
11
 
 
12
extern ParamElem *params;       /* List of parameters */
 
13
extern Boolean plural;
 
14
 
 
15
extern LitElem litValues[];
 
16
extern int litCount;
 
17
 
 
18
extern int vrbwrd;
 
19
 
 
20
#ifdef _PROTOTYPES_
 
21
 
 
22
/* Parse a new player command */
 
23
extern void parse(void);
 
24
 
 
25
#else
 
26
extern void parse();
 
27
#endif