summaryrefslogtreecommitdiffstats
path: root/tools/h5diff/h5diff_common.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-02-24 14:27:57 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-02-24 14:27:57 (GMT)
commit944f2cdf8d7f3d665ac9e72fe2267826e8abb047 (patch)
tree174208cdb4d09a569f111fee490eee8009dbb93a /tools/h5diff/h5diff_common.c
parentb2ec30bfe350f37fcd69d97f8a7cdd7367d06b6a (diff)
downloadhdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.zip
hdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.tar.gz
hdf5-944f2cdf8d7f3d665ac9e72fe2267826e8abb047.tar.bz2
[svn-r21979] Correct HD prefix in tools for strlen and memcpy
Checked for HD support.
Diffstat (limited to 'tools/h5diff/h5diff_common.c')
-rw-r--r--tools/h5diff/h5diff_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5diff/h5diff_common.c b/tools/h5diff/h5diff_common.c
index f7532f2..35c3956 100644
--- a/tools/h5diff/h5diff_common.c
+++ b/tools/h5diff/h5diff_common.c
@@ -355,7 +355,7 @@ check_n_input( const char *str )
unsigned i;
char c;
- for ( i = 0; i < strlen(str); i++)
+ for ( i = 0; i < HDstrlen(str); i++)
{
c = str[i];
if ( i==0 )
@@ -394,7 +394,7 @@ check_p_input( const char *str )
the atof return value on a hexadecimal input is different
on some systems; we do a character check for this
*/
- if (strlen(str)>2 && str[0]=='0' && str[1]=='x')
+ if (HDstrlen(str)>2 && str[0]=='0' && str[1]=='x')
return -1;
x=atof(str);
@@ -428,7 +428,7 @@ check_d_input( const char *str )
the atof return value on a hexadecimal input is different
on some systems; we do a character check for this
*/
- if (strlen(str)>2 && str[0]=='0' && str[1]=='x')
+ if (HDstrlen(str)>2 && str[0]=='0' && str[1]=='x')
return -1;
x=atof(str);