1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
 herr_t
 ss_prop_set_u(ss_prop_t *prop,          /* property list to be modified */
               const char *name,         /* name of property to be modified */
               size_t value              /* new unsigned (size_t) value */
               )
 {
     SS_ENTER(ss_prop_set_u, herr_t);
     if (ss_prop_set(prop, name, H5T_NATIVE_SIZE, &value)<0) SS_ERROR(FAILED);
  SS_CLEANUP:
     SS_LEAVE(0);
 }