Method
GLibDateclamp
Declaration [src]
void
g_date_clamp (
GDate* date,
const GDate* min_date,
const GDate* max_date
)
Description [src]
If date
is prior to min_date
, sets date
equal to min_date
.
If date
falls after max_date
, sets date
equal to max_date
.
Otherwise, date
is unchanged.
Either of min_date
and max_date
may be NULL
.
All non-NULL
dates must be valid.