sandbox/stack.h

19 lines
418 B
C
Raw Normal View History

2018-03-02 16:47:56 +00:00
#ifndef __KF_STACK_H__
#define __KF_STACK_H__
2018-03-03 01:03:32 +00:00
/* data stack interaction */
bool dstack_pop(KF_INT *);
bool dstack_push(KF_INT);
bool dstack_get(size_t, KF_INT *);
size_t dstack_size(void);
void dstack_clear(void);
2018-03-02 16:47:56 +00:00
2018-03-03 01:03:32 +00:00
/* return stack interaction */
bool rstack_pop(KF_ADDR *);
bool rstack_push(KF_ADDR);
bool rstack_get(size_t, KF_ADDR *);
size_t rstack_size(void);
void rstack_clear(void);
2018-03-02 16:47:56 +00:00
2018-03-03 01:03:32 +00:00
#endif /* __KF_STACK_H__ */