mirror of https://github.com/GNOME/gimp.git
13 lines
198 B
C
13 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);
|