summaryrefslogtreecommitdiffstats
path: root/examples/h5_attribute.c
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r3960] Elena Pourmal2001-06-051-3/+3
| | | | | | | | | | | Purpose: Bug fix Description: All examples used "FILE" string in the #define preprocessor directive. That caused error on Windows platforms since FILE is a structure returned by fopen calls. Solution: Changed "FILE" to "H5FILE_NAME" Platforms tested: HPUX 11.00 (kelgia)
* [svn-r3934] Purpose:Bill Wendling2001-05-151-1/+1
| | | | | | | | | | | | | | | | Code Update Description: Ported change from the 1.5 branch to the 1.4 branch where all HDF5 include files are in quotes instead of angle brackets: #include "hdf5_file.h" instead of #include <hdf5_file.h> Platforms tested: Linux
* [svn-r2883] Purpose:Bill Wendling2000-11-131-0/+4
| | | | | | | | Removed warnings about unused parameters. Solution: ``Used'' the parameters by assigning them to themselves. Platforms tested: Linux
* [svn-r1990] Elena Pourmal2000-02-241-1/+2
| | | | | | | Problem: Example did not define string datatype correctly for one of the attributes. H5Tset_strpad call was missing. This fix closes bug #323.
* [svn-r1738] Took out the "UNUSED" macros from the parameter lists, they were ↵Quincey Koziol1999-10-091-1/+1
| | | | | | confusing the HP compiler.
* [svn-r1694] Fixed various compiler warningsQuincey Koziol1999-09-301-1/+1
|
* [svn-r1597] Extended space for string read in.Quincey Koziol1999-08-251-1/+1
|
* [svn-r900] Changes since 19981106Robb Matzke1998-11-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./tools/h5ls.c The chunk dimensions and total size is printed for chunked datasets. ./examples/h5_attribute.c ./examples/h5_select.c ./test/chunk.c ./test/iopipe.c ./test/ragged.c ./src/H5.c ./src/H5private.h ./src/H5public.h Removed extra carriage-return characters inserted by a broken OS :-) Reformatted strange-looking comments. Removed C++ comments. Wrapped long lines. ./examples/h5_attribute.c ./examples/h5_select.c Removed inclusion of private headers. Changed `uint32' (originally `uint') to `unsigned' because `int32' is not exported as part of the API. ./src/H5Fmpio.h Removed includes for <sys/types.h> and <sys/stat.h> since they're already included by H5private.h. All system include files should be included in H5private.h so we can wrap them with appropriate feature macros. ./tools/h5import.c ./tools/h5repart.c Included header files like all other programs in that directory. ./tools/h5tools.c Better type checking for `hsize_t' and `hssize_t'.
* [svn-r893] changed a uint to a uint32 and included H5private.h in the file.Patrick Lu1998-11-101-1/+2
|
* [svn-r702] Spelling corrections in comments. No changes to code.Frank Baker1998-09-161-1/+1
|
* [svn-r647] Source code was reformatted according to the hdf5 programming ↵Elena Pourmal1998-09-011-160/+161
| | | | standards.
* [svn-r645] ./examples/h5_attribute.cElena Pourmal1998-09-011-1/+4
| | | | | | | | | | | | ./examples/h5_select.c Cosmetic changes to the source format ./examples/h5_chunk_read.c ./examples/h5_read.c Third argument in the H5select_hyperslab function had wrong datatype. Fixed.
* [svn-r641] Changed function names for beta release.Quincey Koziol1998-09-011-4/+5
|
* [svn-r639] Two new examples h5_select.c and h5_attribute.c were added to the ↵Elena Pourmal1998-08-311-0/+259
directory. Makefile.in was modified to reflect those changes. Tested on Sun Sparc ( baldric) and DEC Alpha (gondolin)