/* * filterstack.h */ typedef struct { int numero; int ival; float fval; } FilterSlot; int filterstack_init(int nbre); int filterstack_add(int code, int ival, float fval); int filterstack_list(char *txt); /* XXX */ int filterstack_run(FloatImg *target, int notused); int load_stack_from_file(char *fname, int notused);