1#ifndef QUAD_H
2#define QUAD_H
3
4#include <cgraph.h>
5
6typedef void (*quadfn_t)(Agnode_t*, Agnode_t*, Dt_t*, void*);
7
8extern void genQuads (Agraph_t*, quadfn_t action, void*);
9
10#endif
11