/* * GPS.h * * Created on: 22 juil. 2022 * Author: utilisateur */ #ifndef INC_GPS_H_ #define INC_GPS_H_ typedef struct GPS { int lon; int lat; }GPS; int distance(GPS gps1, GPS gps2); #endif /* INC_GPS_H_ */