Gimp/plug-ins/mathmap/postfix.h
1997-11-24 22:05:25 +00:00

12 lines
198 B
C

#include "exprtree.h"
typedef void (*stackfunc) (double);
typedef struct _postfix
{
stackfunc func;
double arg;
} postfix;
void make_postfix (exprtree *tree);
double eval_postfix (void);