(ref string)
| 271 | } |
| 272 | |
| 273 | func mapEmptyStringToNull(ref string) *C.char { |
| 274 | if ref == "" { |
| 275 | return nil |
| 276 | } |
| 277 | return C.CString(ref) |
| 278 | } |
| 279 | |
| 280 | // Rebase is the struct representing a Rebase object. |
| 281 | type Rebase struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…