| 112 | } |
| 113 | |
| 114 | SIValue SI_Point(float latitude, float longitude) { |
| 115 | return (SIValue) { |
| 116 | .type = T_POINT, .allocation = M_NONE, |
| 117 | .point = {.latitude = latitude, .longitude = longitude} |
| 118 | }; |
| 119 | } |
| 120 | |
| 121 | /* Make an SIValue that reuses the original's allocations, if any. |
| 122 | * The returned value is not responsible for freeing any allocations, |
no outgoing calls
no test coverage detected