mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
7f1e49206d
This is where most people will expect to find license information. The COPYING_LBNL_HDF5 file has also been renamed to LICENSE_LBNL_HDF5. The licenses are unchanged.
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# Copyright by The HDF Group.
|
|
# All rights reserved.
|
|
#
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
# the LICENSE file, which can be found at the root of the source code
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
|
# If you do not have access to either file, you may request a copy from
|
|
# help@hdfgroup.org.
|
|
#
|
|
|
|
# This file is used to generate the header that is needed for detecting
|
|
# overflows between types at run-time
|
|
#
|
|
# The bin/make_overflow script reads in this file and creates the appropriate
|
|
# file in the src/ directory when the generated header is out of date with
|
|
# respect to this file.
|
|
#
|
|
# Blank lines and lines beginning with '#' are ignored
|
|
#
|
|
# The format of this file is as follows:
|
|
# <type>, <SIGNED|UNSIGNED>;
|
|
#
|
|
# Where <type> is a valid C type (like 'int8_t', 'hssize_t', etc. and whether
|
|
# the type is signed or unsigned follows.
|
|
#
|
|
|
|
unsigned, UNSIGNED;
|
|
int8_t, SIGNED;
|
|
int, SIGNED;
|
|
long, SIGNED;
|
|
int64_t, SIGNED;
|
|
uint8_t, UNSIGNED;
|
|
uint16_t, UNSIGNED;
|
|
uint32_t, UNSIGNED;
|
|
uint64_t, UNSIGNED;
|
|
ptrdiff_t, SIGNED;
|
|
size_t, UNSIGNED;
|
|
ssize_t, SIGNED;
|
|
haddr_t, UNSIGNED;
|
|
hsize_t, UNSIGNED;
|
|
hssize_t, SIGNED;
|
|
h5_stat_size_t, UNSIGNED;
|