/* * iset_is_empty.c -- test whether an iset is empty * * Part of publib. See man page for more information * "@(#)publib-iset:$Id: iset_is_empty.c,v 1.1.1.1 1993/11/20 17:02:31 liw Exp $" */ #include #include /* need NULL */ #include "publib/iset.h" int iset_is_empty(const Iset *is) { assert(is != NULL); return is->lowest == NULL; }