2002-09-24 06:06:01 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-08-12 03:37:59 +08:00
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2003-08-12 03:37:59 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2002-09-24 06:06:01 +08:00
|
|
|
|
2005-04-27 02:10:31 +08:00
|
|
|
#include "hdf5.h"
|
|
|
|
#include "H5private.h"
|
2002-09-24 06:06:01 +08:00
|
|
|
#include "../src/H5f90i.h"
|
2002-10-09 05:43:49 +08:00
|
|
|
#include "../src/H5f90proto.h"
|
|
|
|
|
|
|
|
char *h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size);
|
2002-09-24 06:06:01 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions from t.c
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
#define nh5_fixname_c H5_FC_FUNC_(h5_fixname_c, H5_FIXNAME_C)
|
|
|
|
#define nh5_cleanup_c H5_FC_FUNC_(h5_cleanup_c, H5_CLEANUP_C)
|
|
|
|
#define nh5_exit_c H5_FC_FUNC_(h5_exit_c, H5_EXIT_C)
|
|
|
|
#define nh5_env_nocleanup_c H5_FC_FUNC_(h5_env_nocleanup_c, H5_ENV_NOCLEANUP_C)
|
2002-09-24 06:06:01 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FCTESTDLL int_f nh5_fixname_c(_fcd base_name, size_t_f *base_namelen, hid_t_f *fapl, _fcd full_name,
|
|
|
|
size_t_f *full_namelen);
|
2002-09-24 06:06:01 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FCTESTDLL int_f nh5_cleanup_c(_fcd base_name, size_t_f *base_namelen, hid_t_f *fapl);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FCTESTDLL H5_ATTR_NORETURN void nh5_exit_c(int_f *status);
|
2008-10-01 05:05:39 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FCTESTDLL void nh5_env_nocleanup_c(int_f *status);
|