// PATH.H #ifndef PATH_H #define PATH_H #include "vtr.h" typedef struct path_data { int np; vtr *coord; } Path; #endif