1
2
3
4
5
6
7
 int
 saf_get_suite_att(SAF_ParMode pmode, SAF_Suite *suite, const char *att_key, hid_t *att_type, int *count, void **value)
 {
   SAF_ENTER(saf_get_suite_att, SAF_PRECONDITION_ERROR);
   int retval = saf_get_attribute(pmode, (ss_pers_t*)suite, att_key, att_type, count, value);
   SAF_LEAVE(retval);
 }