// IncludedFile returns the file that is included by the given inclusion directive func (c Cursor) IncludedFile() File { o := C.clang_getIncludedFile(c.c) return File{o} }
// Retrieve the file that is included by the given inclusion directive cursor. func (c Cursor) IncludedFile() File { return File{C.clang_getIncludedFile(c.c)} }