// Kind returns the cursor's kind. func (c Cursor) Kind() CursorKind { o := C.clang_getCursorKind(c.c) return CursorKind(o) }
// Retrieve the kind of the given cursor. func (c Cursor) Kind() CursorKind { return CursorKind(C.clang_getCursorKind(c.c)) }