Lines Matching defs:ungot
99 struct ungot {
100 struct ungot *ug_next;
103 static struct ungot* ungot = NULL;
823 if (ungot != NULL && ungot->ug_char != CHAR_END_COMMAND)
948 return ((ungot == NULL) ? getchr() : 0);
963 if (ungot == NULL)
972 struct ungot *ug = ungot;
974 ungot = ug->ug_next;
1039 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1042 ug->ug_next = ungot;
1043 ungot = ug;
1052 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1055 if (ungot == NULL)
1056 ungot = ug;
1059 struct ungot *pu;
1060 for (pu = ungot; pu->ug_next != NULL; pu = pu->ug_next)