performance-aware-programming/haversine/cpp/haversine.h

8 lines
181 B
C

#ifndef HAVERSINE_H
#define HAVERSINE_H
double haversine_of_degrees(double x0, double y0, double x1, double y1,
double radius);
#endif // !HAVERSINE_H