13 lines
186 B
C
13 lines
186 B
C
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "compare.h"
|
|
|
|
int compare_number(
|
|
const struct number* a,
|
|
const struct number* b)
|
|
{
|
|
return mpq_cmp(a->number, b->number);
|
|
}
|
|
|