File: parser.h

package info (click to toggle)
focal 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 308 kB
  • ctags: 291
  • sloc: ansic: 3,313; makefile: 159
file content (23 lines) | stat: -rw-r--r-- 613 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***********************************************************************
* File = parser.h
***********************************************************************/

#define SYMLEN  10

typedef char            int8;
typedef short           int16;
typedef long            int32;
typedef unsigned char   byte;
typedef unsigned short  word;
typedef unsigned long   dword;

typedef byte            tchar;  /* 0..255 */
typedef byte            pstate; /* 0..255 */
typedef int8            toktyp; /* 0..0x7F */
typedef double          tokval;

#if defined(OS390)
#define Parser PARSER
#endif
extern tokval Parser ( );