summaryrefslogtreecommitdiffstats
path: root/src/H5Pocpypl.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-09-15 22:13:18 (GMT)
committerGitHub <noreply@github.com>2023-09-15 22:13:18 (GMT)
commit44a00ef876ad3e1922847e93feac57c479217fbe (patch)
tree5e9fc677913a06a71eba1342633f92e93bd07a6c /src/H5Pocpypl.c
parent59a90368cdb696205bdf15040d1a48b4f69af97f (diff)
downloadhdf5-44a00ef876ad3e1922847e93feac57c479217fbe.zip
hdf5-44a00ef876ad3e1922847e93feac57c479217fbe.tar.gz
hdf5-44a00ef876ad3e1922847e93feac57c479217fbe.tar.bz2
Strip HD prefix from string/char C API calls (#3540)
* Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup
Diffstat (limited to 'src/H5Pocpypl.c')
-rw-r--r--src/H5Pocpypl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Pocpypl.c b/src/H5Pocpypl.c
index 67337d5..869e363 100644
--- a/src/H5Pocpypl.c
+++ b/src/H5Pocpypl.c
@@ -356,7 +356,7 @@ H5P__ocpy_merge_comm_dt_list_enc(const void *value, void **_pp, size_t *size)
dt_list = *dt_list_ptr;
while (dt_list) {
/* Get length of encoded path */
- len = HDstrlen(dt_list->path) + 1;
+ len = strlen(dt_list->path) + 1;
/* Encode merge committed dtype list */
if (*pp) {
@@ -415,7 +415,7 @@ H5P__ocpy_merge_comm_dt_list_dec(const void **_pp, void *_value)
*dt_list = NULL;
/* Decode the string sequence */
- len = HDstrlen(*(const char **)pp);
+ len = strlen(*(const char **)pp);
while (len > 0) {
/* Create new node & duplicate string */
if (NULL == (tmp_dt_list = H5FL_CALLOC(H5O_copy_dtype_merge_list_t)))
@@ -423,7 +423,7 @@ H5P__ocpy_merge_comm_dt_list_dec(const void **_pp, void *_value)
if (NULL == (tmp_dt_list->path = H5MM_strdup(*(const char **)pp)))
HGOTO_ERROR(H5E_PLIST, H5E_CANTALLOC, FAIL, "memory allocation failed");
*pp += len + 1;
- assert(len == HDstrlen(tmp_dt_list->path));
+ assert(len == strlen(tmp_dt_list->path));
/* Add copied node to dtype list */
if (dt_list_tail) {
@@ -437,7 +437,7 @@ H5P__ocpy_merge_comm_dt_list_dec(const void **_pp, void *_value)
tmp_dt_list = NULL;
/* Compute length of next string */
- len = HDstrlen(*(const char **)pp);
+ len = strlen(*(const char **)pp);
} /* end while */
/* Advance past terminator for string sequence */
@@ -543,7 +543,7 @@ H5P__ocpy_merge_comm_dt_list_cmp(const void *_dt_list1, const void *_dt_list2, s
assert(dt_list2->path);
/* Compare paths */
- ret_value = HDstrcmp(dt_list1->path, dt_list2->path);
+ ret_value = strcmp(dt_list1->path, dt_list2->path);
if (ret_value != 0)
HGOTO_DONE(ret_value);