35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
/*-----------------------------------------------------------------------------
|
|
* HTBLA-Leonding / Class: 2IHIF
|
|
*-----------------------------------------------------------------------------
|
|
* Exercise Number: S05
|
|
* Title: Sorting criteria
|
|
* Author: Marc Tismonar
|
|
*-----------------------------------------------------------------------------
|
|
* Description:
|
|
* Implementation of sorting criteria
|
|
*-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "sorting_criteria.h"
|
|
|
|
/**
|
|
* Determines whether or not `fst` is smaller than or equal to `snd` (ascending order).
|
|
*
|
|
* @param fst The value that is supposed being smaller than `snd`.
|
|
* @param snd The value to compare.
|
|
* @return True if `fst` is smaller than or equal to `snd`, false otherwise.
|
|
*/
|
|
bool is_in_asc_order(int fst, int snd) {
|
|
return fst <= snd;
|
|
}
|
|
|
|
/**
|
|
* Determines whether or not `fst` is greater than or equal to `snd` (descending order).
|
|
*
|
|
* @param fst The value that is supposed being greater than `snd`.
|
|
* @param snd The value to compare.
|
|
* @return True if `fst` is greater than or equal to `snd`, false otherwise.
|
|
*/
|
|
bool is_in_desc_order(int fst, int snd) {
|
|
return fst >= snd;
|
|
}
|