/usr/include/adios_read.h is in libadios-dev 1.5.0-1ubuntu7.
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 | /*
* 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) 2008 - 2009. UT-BATTELLE, LLC. All rights reserved.
*/
/*
* Read C API for ADIOS BP format files
*/
#ifndef __ADIOS_READ_H__
#define __ADIOS_READ_H__
#ifdef ADIOS_USE_READ_API_1
# include "adios_read_v1.h"
#else
# include "adios_read_v2.h"
#endif
#endif /*__ADIOS_READ_H__*/
|