()
| 32 | } |
| 33 | |
| 34 | func (c *Commit) Message() string { |
| 35 | ret := C.GoString(C.git_commit_message(c.cast_ptr)) |
| 36 | runtime.KeepAlive(c) |
| 37 | return ret |
| 38 | } |
| 39 | |
| 40 | func (c *Commit) MessageEncoding() MessageEncoding { |
| 41 | ptr := C.git_commit_message_encoding(c.cast_ptr) |
nothing calls this directly
no outgoing calls
no test coverage detected