Skip to content

Commit

Permalink
added H5Oexists_by_name, H5Lexists
Browse files Browse the repository at this point in the history
  • Loading branch information
jvolkening committed Oct 4, 2017
1 parent 250e2b0 commit 3ee71d8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions HDF5.xs
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,19 @@ H5Lget_name_by_idx(loc_id, group_name, index_field, order, n, lapl_id)
OUTPUT:
RETVAL

#----------------------------------------------------------------------------#

htri_t
H5Lexists(loc_id, name, lapl_id)
hid_t loc_id
char *name
hid_t lapl_id

CODE:
RETVAL = H5Lexists(loc_id, name, lapl_id);
OUTPUT:
RETVAL


#############################################################################
# H5O API
Expand Down Expand Up @@ -1104,6 +1117,21 @@ H5Oopen(loc_id, name, lapl_id)
char *name
hid_t lapl_id

#---------------------------------------------------------------------------#

htri_t
H5Oexists_by_name(loc_id, obj_name, lapl_id)
hid_t loc_id
char *obj_name
hid_t lapl_id

CODE:
RETVAL = H5Oexists_by_name(loc_id, obj_name, lapl_id);
OUTPUT:
RETVAL

#----------------------------------------------------------------------------#


#############################################################################
# H5S API
Expand Down
2 changes: 2 additions & 0 deletions lib/Data/HDF5.pm
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ my @functions = qw/
H5Tget_strpad
H5Tget_super
H5Lexists
H5Lget_name_by_idx
H5Oexists_by_name
H5Oget_info
H5Oopen
Expand Down

0 comments on commit 3ee71d8

Please sign in to comment.