FACT++  1.0
int read_str_int ( char *  str)

Definition at line 2326 of file webDid.c.

References i.

Referenced by did_read_string().

2327 {
2328  int i;
2329  if((str[0] == '0') && (str[1] == 'x'))
2330  sscanf(str+2,"%x",&i);
2331  else
2332  sscanf(str,"%d",&i);
2333  return(i);
2334 }
int i
Definition: db_dim_client.c:21
char str[80]
Definition: test_client.c:7

+ Here is the caller graph for this function: