// Name retrieves the complete file and path name of the given file. func (c File) Name() string { cstr := cxstring{C.clang_getFileName(c.c)} defer cstr.Dispose() return cstr.String() }
// Retrieve the complete file and path name of the given file. func (f File) Name() string { o := cxstring{C.clang_getFileName(f.c)} defer o.Dispose() return o.String() }