This file is indexed.

/usr/include/adios_link.h is in libadios-dev 1.13.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
#ifndef ADIOS_LINK_H
#define ADIOS_LINK_H

#ifdef __cplusplus
extern "C" {
#endif

enum ADIOS_LINK_TYPE {
    LINK_VAR = 1,
    LINK_IMAGE = 2
    /* expand supported link types here */
};

typedef struct
{
    int id;
    char * name;
    int nrefs;
    enum ADIOS_LINK_TYPE * type;
    char ** ref_names;    /* the linked variable name referred from this var */
    char ** ref_files;    /* full path, 0 means link from the same file, otherwise link from externel file */
} ADIOS_LINK;

#ifdef __cplusplus
}
#endif

#endif