()
| 116 | } |
| 117 | |
| 118 | func (t *Tree) EntryCount() uint64 { |
| 119 | num := C.git_tree_entrycount(t.cast_ptr) |
| 120 | runtime.KeepAlive(t) |
| 121 | return uint64(num) |
| 122 | } |
| 123 | |
| 124 | type TreeWalkCallback func(string, *TreeEntry) error |
| 125 | type treeWalkCallbackData struct { |
no outgoing calls