X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=score.c;h=1508b603569b6cf2d64571365ccae0b1b7d87776;hb=1f7a50b57bf59a85dafaed5e7b48bb0ec2efcc5c;hp=53e55dae1a22f4c4d96863332a50af4481002a77;hpb=97ad8ac8735dfd7a514aa66e9de54f253440c17d;p=paraslash.git diff --git a/score.c b/score.c index 53e55dae..1508b603 100644 --- a/score.c +++ b/score.c @@ -245,29 +245,12 @@ static int get_score_row_from_aft_row(const struct osl_row *aft_row, * * This is used for the ls command. The \a data parameter is passed as the * second argument to \a func. - * - * \sa admissible_file_loop_reverse(). */ int admissible_file_loop(void *data, osl_rbtree_loop_func *func) { return osl(osl_rbtree_loop(score_table, SCORECOL_SCORE, data, func)); } -/** - * Loop over all files in the score table in reverse order. - * - * \param data As in admissible_file_loop(). - * \param func As in admissible_file_loop(). - * - * \return Same return value as admissible_file_loop(). - * - * \sa admissible_file_loop(), osl_rbtree_loop_reverse(). - */ -int admissible_file_loop_reverse(void *data, osl_rbtree_loop_func *func) -{ - return osl(osl_rbtree_loop_reverse(score_table, SCORECOL_SCORE, data, func)); -} - /** * Get the admissible audio file with highest score. *