FACT++  1.0
int read_str_int ( char *  str)

Definition at line 2029 of file did.c.

References i.

Referenced by did_read_string().

2030 {
2031  int i;
2032  if((str[0] == '0') && (str[1] == 'x'))
2033  sscanf(str+2,"%x",&i);
2034  else
2035  sscanf(str,"%d",&i);
2036  return(i);
2037 }
int i
Definition: db_dim_client.c:21
char str[80]
Definition: test_client.c:7

+ Here is the caller graph for this function: