EX_03/level-2/tsp/tsp.h
2025-09-23 08:41:21 +01:00

14 lines
152 B
C

#ifndef TSP_H
# define TSP_H
# include <stdio.h>
# include <stdlib.h>
# include <math.h>
typedef struct s_city
{
float x;
float y;
} t_city;
#endif