FACT++  1.0
int sll_insert_queue ( SLL head,
SLL item 
)

Definition at line 20 of file sll.c.

References sll::next.

Referenced by add_exit_handler(), add_exit_handler_item(), create_browser(), dis_set_client_exit_handler(), std_cmnd_handler(), update_servers(), and update_service_data().

21 {
22  SLL *auxp;
23 
24  DISABLE_AST
25  auxp = head;
26  while( auxp->next )
27  auxp = auxp->next;
28  auxp->next = item;
29  item->next = 0;
30  ENABLE_AST
31  return(1);
32 }
struct sll * next
Definition: dim.h:537
Definition: dim.h:536

+ Here is the caller graph for this function: