| 1010 | return H5Gcreate(loc_id, name, lcpl_id, gcpl_id, gapl_id); |
| 1011 | } |
| 1012 | herr_t close(hid_t group_id) { |
| 1013 | if (group_id == HID_INVALID) return -1; |
| 1014 | return H5Gclose(group_id); |
| 1015 | } |
| 1016 | |
| 1017 | // higher level c++ utils |
| 1018 |
no outgoing calls
no test coverage detected