()
| 25 | } |
| 26 | |
| 27 | func (v *Blob) Size() int64 { |
| 28 | ret := int64(C.git_blob_rawsize(v.cast_ptr)) |
| 29 | runtime.KeepAlive(v) |
| 30 | return ret |
| 31 | } |
| 32 | |
| 33 | func (v *Blob) Contents() []byte { |
| 34 | size := C.int(C.git_blob_rawsize(v.cast_ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected