(copts *C.git_apply_options)
| 1003 | } |
| 1004 | |
| 1005 | func applyOptionsFromC(copts *C.git_apply_options) *ApplyOptions { |
| 1006 | return &ApplyOptions{ |
| 1007 | Flags: uint(copts.flags), |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | // ApplyLocation represents the possible application locations for applying |
| 1012 | // diffs. |
no outgoing calls
no test coverage detected
searching dependent graphs…