Home
last modified time | relevance | path

Searched refs:LstIsEmpty (Results 1 – 10 of 10) sorted by relevance

/original-bsd/usr.bin/make/lst.lib/
H A DlstForEachFrom.c52 if (!LstValid (list) || LstIsEmpty (list)) {
83 } while (!result && !LstIsEmpty(list) && !done);
H A DlstAppend.c48 if (LstValid (l) && (ln == NILLNODE && LstIsEmpty (l))) {
52 if (!LstValid (l) || LstIsEmpty (l) || ! LstNodeValid (ln, l)) {
H A DlstInsert.c51 if (LstValid (l) && (LstIsEmpty (l) && ln == NILLNODE))
54 if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) {
H A DlstIsEmpty.c41 return ( ! LstValid (l) || LstIsEmpty(l));
H A DlstFirst.c39 if (!LstValid (l) || LstIsEmpty (l)) {
H A DlstLast.c39 if (!LstValid(l) || LstIsEmpty (l)) {
H A DlstOpen.c50 ((List) l)->atEnd = LstIsEmpty (l) ? Head : Unknown;
H A DlstSetCirc.c60 if (LstIsEmpty (l)) {
H A DlstFindFrom.c47 if (!LstValid (l) || LstIsEmpty (l) || !LstNodeValid (ln, l)) {
H A DlstInt.h82 #define LstIsEmpty(l) (((List)l)->firstPtr == NilListNode) macro