| 8 | #include "point.h" |
| 9 | |
| 10 | float Point_lat(SIValue point) { |
| 11 | ASSERT(SI_TYPE(point) == T_POINT); |
| 12 | |
| 13 | return point.point.latitude; |
| 14 | } |
| 15 | |
| 16 | float Point_lon(SIValue point) { |
| 17 | ASSERT(SI_TYPE(point) == T_POINT); |
no outgoing calls
no test coverage detected