File: stack.h

package info (click to toggle)
epic4 1%3A2.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,600 kB
  • ctags: 5,377
  • sloc: ansic: 55,723; makefile: 656; sh: 158; perl: 30
file content (20 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * stack.h - header for stack.c
 *
 * Copyright 1993 Matthew Green
 * Copyright 1997 EPIC Software Labs
 * See the COPYRIGHT file for license information.
 */

#ifndef __stack_h__
#define __stack_h__

#define STACK_POP 	0
#define STACK_PUSH 	1
#define STACK_SWAP 	2
#define STACK_LIST 	3

#define STACK_DO_ALIAS	0x0001
#define STACK_DO_ASSIGN	0x0002

#endif /* __stack_h_ */