Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
39 lines
1.6 KiB
C
Executable file
39 lines
1.6 KiB
C
Executable file
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
* is linked from the top-level documents page. It can also be found at *
|
|
* http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
|
|
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef H5UTIL_H__
|
|
#define H5UTIL_H__
|
|
|
|
#ifndef SUCCEED
|
|
#define SUCCEED 0
|
|
#endif
|
|
|
|
#ifndef FAIL
|
|
#define FAIL (-1)
|
|
#endif
|
|
|
|
|
|
typedef struct h5str_t {
|
|
char *s;
|
|
size_t max; /* the allocated size of the string */
|
|
} h5str_t;
|
|
|
|
void h5str_new (h5str_t *str, size_t len);
|
|
void h5str_free (h5str_t *str);
|
|
void h5str_resize (h5str_t *str, size_t new_len);
|
|
char* h5str_append (h5str_t *str, const char* cstr);
|
|
int h5str_sprintf(h5str_t *str, hid_t container, hid_t tid, void *buf);
|
|
void h5str_array_free(char **strs, size_t len);
|
|
|
|
#endif /* H5UTIL_H__ */
|