FACT++  1.0
NODE* find_node ( char *  node)

Definition at line 174 of file webDid.c.

References Node_head, and sll_get_next().

Referenced by prepareJSONSmiTree(), prepareJSONTree(), update_servers(), update_services(), and update_smi_objects().

175 {
176  NODE *nodep;
177 
178  nodep = Node_head;
179  while( (nodep = (NODE *)sll_get_next((SLL *)nodep)) )
180  {
181  if(!strcmp(nodep->name,node))
182  {
183  return(nodep);
184  }
185  }
186  return ((NODE *)0);
187 }
NODE * Node_head
Definition: webDid.c:28
Definition: dns.c:26
SLL * sll_get_next(SLL *item)
Definition: sll.c:50
Definition: dim.h:536

+ Here is the call graph for this function:

+ Here is the caller graph for this function: