ZE-Standard-Libraries/stack/stack_expand.h
2018-08-03 18:32:20 +08:00

17 lines
381 B
C

#ifndef STACK_EXPAND_H
#define STACK_EXPAND_H
#include "stack.h"
SNode *snodeWithInt(int);
SNode *snodeWithDouble(double);
SNode *snodeWithString(char *);
SNode *snodeWithPointer(void *);
int getValueByIntForSNode(SNode *);
double getValueByDoubleForSNode(SNode *);
char *getValueByStringForSNode(SNode *);
void *getValueByPointerForSNode(SNode *);
#endif /* stack_expand_h */