This file is indexed.

/usr/include/adios_transform_methods.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
#ifndef ADIOS_TRANSFORM_METHODS_H
#define ADIOS_TRANSFORM_METHODS_H

#ifdef __cplusplus
extern "C" {
#endif

typedef struct
{
    int ntransforms;            // number of transformations
    char ** name;               // array of transform names
    char ** description;        // array of descriptions
} ADIOS_AVAILABLE_TRANSFORM_METHODS;

/* Provide the names of transformations available in the running application
 */
ADIOS_AVAILABLE_TRANSFORM_METHODS * adios_available_transform_methods();

void adios_available_transform_methods_free (ADIOS_AVAILABLE_TRANSFORM_METHODS *);

#ifdef __cplusplus
}
#endif

#endif