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