Changeset 593 for branches/1.3/stack.h
- Timestamp:
- 2009-07-05T06:06:15+02:00 (4 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/stack.h
r394 r593 7 7 8 8 #define S xc_stack_t* 9 void xc_stack_init(S stack); 9 void xc_stack_init_ex(S stack, int initsize); 10 #define xc_stack_init(stack) xc_stack_init_ex(stack, 8) 10 11 void xc_stack_destroy(S stack); 11 12 void xc_stack_push(S stack, void *item); … … 13 14 void *xc_stack_top(S stack); 14 15 void *xc_stack_get(S stack, int n); 15 int xc_stack_ size(S stack);16 int xc_stack_count(S stack); 16 17 void xc_stack_reverse(S stack); 17 18 #undef S
Note: See TracChangeset
for help on using the changeset viewer.

