GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
dcmp.c
Go to the documentation of this file.
1
int
Cdhc_dcmp
(
const
void
*i,
const
void
*j)
2
{
3
double
x
= *(
double
*)i;
4
double
y = *(
double
*)j;
5
6
if
(x < y)
7
return
-1;
8
9
if
(x > y)
10
return
1;
11
12
return
0;
13
}
x
#define x
Cdhc_dcmp
int Cdhc_dcmp(const void *i, const void *j)
Definition:
dcmp.c:1
lib
cdhc
dcmp.c
Generated on Mon May 31 2021 05:21:28 for GRASS GIS 7 Programmer's Manual by
1.8.13