FACT++  1.0
int sll_empty ( SLL head)

Definition at line 60 of file sll.c.

References sll::next.

Referenced by update_show_servers().

61 {
62  register int ret;
63 
64  DISABLE_AST
65  if(head->next)
66  ret = 0;
67  else
68  ret = 1;
69  ENABLE_AST
70  return(ret);
71 }
struct sll * next
Definition: dim.h:537

+ Here is the caller graph for this function: