FACT++  1.0
SLL* sll_search ( SLL head,
char *  data,
int  size 
)

Definition at line 35 of file sll.c.

References sll::next, and sll::user_info.

Referenced by add_exit_handler(), add_exit_handler_item(), dis_set_client_exit_handler(), and find_exit_handler_item().

36 {
37  DISABLE_AST
38  while( (head = head->next) )
39  {
40  if( !memcmp(head->user_info, data, (size_t)size) )
41  {
42  break;
43  }
44  }
45  ENABLE_AST
46  return(head);
47 }
struct sll * next
Definition: dim.h:537
int size
Definition: db_dim_server.c:17
float data[4 *1440]
char user_info[1]
Definition: dim.h:538

+ Here is the caller graph for this function: