|
| |||||||||||||
#include "mit-copyright.h"Go to the source code of this file.
Data Structures | |
| struct | _char_stack |
Defines | |
| #define | NULL 0 |
| #define | char_stack_create() ((struct _char_stack *) NULL) |
| #define | char_stack_empty(stack) (!(stack)) |
| #define | char_stack_top(stack) ((stack)->data) |
| #define | char_stack_pop(stack) |
| #define | char_stack_push(stack, object) |
Typedefs | |
| typedef _char_stack * | char_stack |
|
|
Definition at line 29 of file char_stack.h. Referenced by disp_get_cmds(), and protect(). |
|
|
Definition at line 31 of file char_stack.h. Referenced by disp_get_cmds(), and protect(). |
|
|
Value: { char_stack old = (stack);\
(stack) = old->next;\
free(old); }
Definition at line 35 of file char_stack.h. Referenced by disp_get_cmds(), and protect(). |
|
|
Value: { char_stack new = (struct _char_stack *)\
malloc(sizeof (struct _char_stack));\
new->next = (stack);\
new->data = object;\
(stack) = new; }
Definition at line 39 of file char_stack.h. Referenced by disp_get_cmds(), and protect(). |
|
|
Definition at line 33 of file char_stack.h. Referenced by disp_get_cmds(), and protect(). |
|
|
|
Referenced by disp_get_cmds(), and protect(). |
| Last updated at Tue Dec 18 21:07:42 PST 2007. | This site and project hosted by... |