FACT++  1.0
CURR_SERVICE* find_curr_service ( char *  service)

Definition at line 238 of file webDid.c.

References Curr_service_head, sitem::name, bitem::servicep, and sll_get_next().

Referenced by check_browser_changes(), and update_service_data().

239 {
240  CURR_SERVICE *servicep;
241 
242  servicep = Curr_service_head ;
243  while( (servicep = (CURR_SERVICE *)sll_get_next((SLL *)servicep)) )
244  {
245  if(!strcmp(servicep->name,service))
246  {
247  return(servicep);
248  }
249  }
250  return ((CURR_SERVICE *)0);
251 }
Definition: webDid.c:30
CURR_SERVICE * Curr_service_head
Definition: webDid.c:46
SLL * sll_get_next(SLL *item)
Definition: sll.c:50
Definition: dim.h:536
char name[MAX_NAME]
Definition: webDid.c:32

+ Here is the call graph for this function:

+ Here is the caller graph for this function: