// Declaration returns the cursor for the declaration of the given type. func (t Type) Declaration() Cursor { o := C.clang_getTypeDeclaration(t.c) return Cursor{o} }
// Return the cursor for the declaration of the given type. func (t Type) Declaration() Cursor { return Cursor{C.clang_getTypeDeclaration(t.c)} }