Lines Matching full:ug
997 struct ungot *ug = ungot;
998 char c = ug->ug_char;
1000 *p_end_command = ug->ug_end_command;
1001 ungot = ug->ug_next;
1002 free(ug);
1100 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1102 ug->ug_char = c;
1103 ug->ug_next = ungot;
1104 ungot = ug;
1113 struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot));
1114 ug->ug_char = c;
1115 ug->ug_end_command = end_command;
1116 ug->ug_next = NULL;
1118 ungot = ug;
1124 pu->ug_next = ug;