Gimp/plug-ins/mathmap/postfix.h
Adrian Likins 9ac0e40758 added glasstile, colorify, papertile, and illusion plugins
updated despeckle, and math map
1997-12-09 05:57:33 +00:00

13 lines
224 B
C

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