#ifndef TSP_H # define TSP_H # include # include # include typedef struct s_city { float x; float y; } t_city; #endif