13 lines
200 B
C
13 lines
200 B
C
#ifndef STACK_H
|
|
#define STACK_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* return low level mark of free stack space */
|
|
uint16_t stack_min(void);
|
|
|
|
/* return total amount of stack */
|
|
uint16_t stack_total(void);
|
|
|
|
#endif
|