1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 int
 saf_target_subset_relation(SAF_RelTarget *target,       /* [OUT] Relation targeting information to be initialize herein. */
                            SAF_RelRep *srtype,          /* Target subset relation types. */
                            hid_t type                   /* Target data types. */
                            )
 {
    SAF_ENTER(saf_target_subset_relation, SAF_PRECONDITION_ERROR);

    memset(target, 0, sizeof *target);
    target->is_set = TRUE;
    target->data_type = type;

    SAF_ERROR(SAF_NOTIMPL_ERROR, _saf_errmsg("not implemented yet"));
    SAF_LEAVE(SAF_NOTIMPL_ERROR);
 }