FACT++
1.0
Main Page
Related Pages
Namespaces
Classes
Files
Examples
int read_str_int
(
char *
str
)
Definition at line
2001
of file
didMarkus.c
.
References
i
.
Referenced by
did_read_string()
.
2002
{
2003
int
i
;
2004
if
((
str
[0] ==
'0'
) && (
str
[1] ==
'x'
))
2005
sscanf(
str
+2,
"%x"
,&i);
2006
else
2007
sscanf(
str
,
"%d"
,&i);
2008
return
(i);
2009
}
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
didMarkus.c
Generated on Sun Sep 18 2016 20:50:28 for FACT++ by
1.8.11