()
| 100 | } |
| 101 | |
| 102 | func (pb *Packbuilder) ObjectCount() uint32 { |
| 103 | ret := uint32(C.git_packbuilder_object_count(pb.ptr)) |
| 104 | runtime.KeepAlive(pb) |
| 105 | return ret |
| 106 | } |
| 107 | |
| 108 | func (pb *Packbuilder) WriteToFile(name string, mode os.FileMode) error { |
| 109 | cname := C.CString(name) |
nothing calls this directly
no outgoing calls
no test coverage detected