FACT++  1.0
DIC_SERVICE* locate_command ( char *  serv_name)

Definition at line 1202 of file dic.c.

References dll_search().

Referenced by end_command(), recv_rout(), release_service(), request_command(), request_service(), and send_service_command().

1203 {
1204  register DIC_SERVICE *servp;
1205 
1206  if(!Cmnd_head)
1207  return((DIC_SERVICE *)0);
1208  if( (servp = (DIC_SERVICE *) dll_search( (DLL *) Cmnd_head, serv_name,
1209  (int)strlen(serv_name)+1)) )
1210  return(servp);
1211  return((DIC_SERVICE *)0);
1212 }
Definition: dim.h:530
static DIC_SERVICE * Cmnd_head
Definition: dic.c:42
Definition: dim.h:457
DLL * dll_search(DLL *head, char *data, int size)
Definition: dll.c:49

+ Here is the call graph for this function:

+ Here is the caller graph for this function: