blob: 27cc2f0c8773593b62b65af628dd76992200de49 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __CCL_STACK_H__
#define __CCL_STACK_H__
#include "3cl.h"
void ccl_stack_push(struct CCLStack *stack, CCLNum num);
CCLNum ccl_stack_pop(struct CCLStack *stack);
#endif /* __CCL_STACK_H__ */
|