EX_03/tsp/tsp.h
2025-09-22 16:53:29 +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