GRASS 8 Programmer's Manual
8.6.0dev(2026)-4bb960b182
Loading...
Searching...
No Matches
between.c
Go to the documentation of this file.
1
/*
2
* SPDX-FileCopyrightText: 1995 Bill Brown <brown@gis.uiuc.edu>
3
* SPDX-FileCopyrightText: 1995 Michael Shapiro
4
* SPDX-FileCopyrightText: GRASS Development Team
5
* SPDX-License-Identifier: GPL-2.0-or-later
6
*/
7
int
datetime_is_between
(
int
x,
int
a,
int
b
)
8
{
9
if
(a <=
b
)
10
return
a <=
x
&&
x
<=
b
;
11
else
12
return
b
<=
x
&&
x
<= a;
13
}
datetime_is_between
int datetime_is_between(int x, int a, int b)
Definition
between.c:7
b
double b
Definition
r_raster.c:37
x
#define x
lib
datetime
between.c
Generated on Mon Sep 14 2026 06:57:42 for GRASS 8 Programmer's Manual by
1.9.8