// Spelling returns the name of the entity referenced by this cursor. func (c Cursor) Spelling() string { cstr := cxstring{C.clang_getCursorSpelling(c.c)} defer cstr.Dispose() return cstr.String() }
// Retrieve a name for the entity referenced by this cursor. func (c Cursor) Spelling() string { o := cxstring{C.clang_getCursorSpelling(c.c)} defer o.Dispose() return o.String() }