(c C.git_merge_file_options)
| 505 | } |
| 506 | |
| 507 | func mergeFileOptionsFromC(c C.git_merge_file_options) MergeFileOptions { |
| 508 | return MergeFileOptions{ |
| 509 | AncestorLabel: C.GoString(c.ancestor_label), |
| 510 | OurLabel: C.GoString(c.our_label), |
| 511 | TheirLabel: C.GoString(c.their_label), |
| 512 | Favor: MergeFileFavor(c.favor), |
| 513 | Flags: MergeFileFlags(c.flags), |
| 514 | MarkerSize: uint16(c.marker_size), |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | func populateMergeFileOptions(copts *C.git_merge_file_options, opts *MergeFileOptions) *C.git_merge_file_options { |
| 519 | C.git_merge_file_options_init(copts, C.GIT_MERGE_FILE_OPTIONS_VERSION) |
nothing calls this directly
no test coverage detected
searching dependent graphs…