FACT++  1.0
void dll_insert_after ( DLL atitem,
DLL item 
)

Definition at line 36 of file dll.c.

References dll::next, and dll::prev.

Referenced by dtq_add_entry().

37 {
38  register DLL *auxp;
39 
40  DISABLE_AST
41  auxp = atitem->next;
42  item->next = auxp;
43  item->prev = atitem;
44  atitem->next = item;
45  auxp->prev = item;
46  ENABLE_AST
47 }
struct dll * prev
Definition: dim.h:532
struct dll * next
Definition: dim.h:531
Definition: dim.h:530

+ Here is the caller graph for this function: