This file is indexed.

/usr/lib/R/site-library/XVector/include/XVector_defines.h is in r-bioc-xvector 0.18.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*****************************************************************************
 XVector C interface: typedefs and defines
 -----------------------------------------

   The XVector C interface is split in 2 files:
     1. XVector_defines.h (this file): contains the typedefs and defines
        of the interface.
     2. XVector_interface.h (in this directory): contains the prototypes
        of the XVector C routines that are part of the interface.

   Please consult XVector_interface.h for how to use this interface in your
   package.

 *****************************************************************************/
#ifndef XVECTOR_DEFINES_H
#define XVECTOR_DEFINES_H

#include "IRanges_defines.h"

#include <Rdefines.h>
#include <R_ext/Rdynload.h>


typedef struct xvector_list_holder {
	const char *classname;
	const char *element_type;
	SEXP xp_list;
	int length;
	const int *start;
	const int *width;
	const int *group;
} XVectorList_holder;

#endif