FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
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
}
i
int i
Definition:
db_dim_client.c:21
str
char str[80]
Definition:
test_client.c:7
Here is the caller graph for this function:
dim
src
did
did.c
Generated on Sun Sep 18 2016 20:50:27 for FACT++ by
1.8.11