FACT++  1.0
SLL* sll_remove_head ( SLL head)

Definition at line 94 of file sll.c.

References sll::next.

Referenced by dis_get_next_cmnd(), and update_show_servers().

95 {
96  register SLL *auxp;
97 
98  DISABLE_AST
99  if( (auxp = head->next) )
100  {
101  head->next = auxp->next;
102  }
103  ENABLE_AST
104  return(auxp);
105 }
struct sll * next
Definition: dim.h:537
Definition: dim.h:536

+ Here is the caller graph for this function: