GPS.h 225 B

12345678910111213141516171819
  1. /*
  2. * GPS.h
  3. *
  4. * Created on: 22 juil. 2022
  5. * Author: utilisateur
  6. */
  7. #ifndef INC_GPS_H_
  8. #define INC_GPS_H_
  9. typedef struct GPS {
  10. int lon;
  11. int lat;
  12. }GPS;
  13. int distance(GPS gps1, GPS gps2);
  14. #endif /* INC_GPS_H_ */