| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.10

 

day_slot_filled

#include "sflslot.h"
Bool
day_slot_filled (const byte *range, int minute)

Synopsis

Returns TRUE if the specified minute slot is set; returns FALSE if the slot is not set.

Source Code - (sflslot.c)

{
    ASSERT (minute >= 0 && minute < MAX_MIN);
    return ((range [BYTE (minute)] & BIT (minute)) > 0);
}

| << | < | > | >> iMatix Copyright © 1996-99 iMatix Corporation