mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-12-22 08:56:57 -05:00
Little cleaning of interval code
This commit is contained in:
parent
9acdef38c9
commit
80c3adaace
2 changed files with 9 additions and 6 deletions
|
|
@ -31,6 +31,12 @@ INLINE void interval_all(interval_t *i)
|
|||
i->max = UINT_MAX;
|
||||
}
|
||||
|
||||
INLINE int interval_checkempty(const interval_t *i)
|
||||
{
|
||||
return (i->min > i->max ||
|
||||
(i->min == i->max && (i->openmin || i->openmax)));
|
||||
}
|
||||
|
||||
INLINE int interval_empty(const interval_t *i)
|
||||
{
|
||||
return i->empty;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue