You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
420 B
C
16 lines
420 B
C
#ifndef STACK_H_
|
|
#define STACK_H_
|
|
|
|
#include "parser.h"
|
|
|
|
void ipush(interpreter *it, void *v);
|
|
void *ipop(interpreter *it);
|
|
void ipopm(interpreter *it, uint32_t count);
|
|
variable *igetarg(interpreter *interp, uint32_t index);
|
|
char *igetarg_string(interpreter *interp, uint32_t index);
|
|
int igetarg_integer(interpreter *interp, uint32_t index);
|
|
float igetarg_float(interpreter *interp, uint32_t index);
|
|
|
|
|
|
#endif // STACK_H_
|