Searched refs:LstIsEmpty (Results 1 - 9 of 9) sorted by relevance

/freebsd-9.3-release/contrib/bmake/lst.lib/
H A DlstFirst.c71 if (!LstValid (l) || LstIsEmpty (l)) {
H A DlstIsEmpty.c49 * LstIsEmpty.c --
73 return ( ! LstValid (l) || LstIsEmpty(l));
H A DlstLast.c71 if (!LstValid(l) || LstIsEmpty (l)) {
H A DlstOpen.c82 (l)->atEnd = LstIsEmpty (l) ? Head : Unknown;
H A DlstForEachFrom.c82 if (!LstValid (list) || LstIsEmpty (list)) {
121 } while (!result && !LstIsEmpty(list) && !done);
H A DlstFindFrom.c76 if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) {
H A DlstAppend.c83 if (LstValid (l) && (ln == NULL && LstIsEmpty (l))) {
87 if (!LstValid (l) || LstIsEmpty (l) || ! LstNodeValid (ln, l)) {
H A DlstInsert.c86 if (LstValid (l) && (LstIsEmpty (l) && ln == NULL))
89 if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) {
H A DlstInt.h100 * LstIsEmpty (l) --
103 #define LstIsEmpty(l) (((List)(l))->firstPtr == NULL) macro

Completed in 753 milliseconds