Lines Matching defs:datum
93 void *datum; /* datum associated with this element */
103 /* Free the list nodes, as well as each node's datum. */
124 /* Find the first node that contains the given datum, or NULL. */
129 /* Insert a datum before the given node. */
131 /* Add a datum at the head of the list. */
133 /* Add a datum at the tail of the list. */
150 /* Add a datum at the tail of the queue. */
152 Lst_Enqueue(List *list, void *datum)
154 Lst_Append(list, datum);
157 /* Remove the head node of the queue and return its datum. */