1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
 SAF_Eval *
 saf_find_one_evaluation(SAF_Db *database,               /* The database in which to search */
                         const char *name,               /* The name for which to search */
                         SAF_Eval *buf                   /* [OUT] Optional buffer to fill in and return */
                         )
 {
     SAF_ENTER(saf_find_one_evaluation,NULL);
     int         n=1;

     saf_find_evaluations(SAF_EACH, database, name, NULL, &n, &buf);
     SAF_LEAVE(buf);
 }