This file is indexed.

/usr/include/adios_read_v2_fwd.h is in libadios-dev 1.9.0-7build2.

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
35
36
37
38
39
40
41
42
43
/*
 * ADIOS is freely available under the terms of the BSD license described
 * in the COPYING file in the top level directory of this source distribution.
 *
 * Copyright (c) 2014.  Kitware, Inc. All rights reserved.
 */

/**********************************************************************/
/* Forward declarations of the C structs used in the read API.  This  */
/* header can be directly copied and used in interface code to allow  */
/* classes that use the ADIOS structures in their interface to be     */
/* consumed with no direct knowledge of ADIOS.                        */
/**********************************************************************/
#ifndef __ADIOS_READ_V2_FWD_H__
#define __ADIOS_READ_V2_FWD_H__

#ifdef __cplusplus
extern "C" {
#endif

struct _ADIOS_FILE;
typedef struct _ADIOS_FILE ADIOS_FILE;

struct _ADIOS_VARSTAT;
typedef struct _ADIOS_VARSTAT ADIOS_VARSTAT;

struct _ADIOS_VARBLOCK;
typedef struct _ADIOS_VARBLOCK ADIOS_VARBLOCK;

struct _ADIOS_VARMESH;
typedef struct _ADIOS_VARMESH ADIOS_VARMESH;

struct _ADIOS_VARINFO;
typedef struct _ADIOS_VARINFO ADIOS_VARINFO;

struct _ADIOS_VARCHUNK;
typedef struct _ADIOS_VARCHUNK ADIOS_VARCHUNK;

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif