Loading [MathJax]/extensions/MathMenu.js
Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Toggle main menu visibility
Main Page
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
Variables
a
b
c
d
e
f
g
h
j
l
m
p
s
w
Typedefs
Enumerations
Enumerator
c
e
o
t
u
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
i
j
m
o
p
r
s
t
u
v
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
q
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Symbols
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
▼
Twilight Princess
►
About
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
►
docs
►
include
▼
src
►
amcstubs
►
c
►
d
►
dolphin
►
f_ap
►
f_op
►
f_pc
►
JSystem
►
m_Do
►
odemuexi2
►
odenotstub
▼
PowerPC_EABI_Support
►
MetroTRK
▼
MSL
▼
MSL_C
▼
MSL_Common
▼
Include
►
abort_exit.h
►
alloc.h
►
ansi_files.h
►
ansi_fp.h
►
arith.h
►
buffer_io.h
►
char_io.h
►
cmath.h
►
critical_regions.h
cstring.h
►
ctype.h
►
direct_io.h
►
errno.h
►
extras.h
►
file_io.h
►
FILE_POS.h
►
float.h
►
limits.h
►
math.h
►
mbstring.h
►
mem_funcs.h
►
misc_io.h
►
printf.h
►
scanf.h
►
signal.h
►
stddef.h
stdio.h
stdlib.h
►
string.h
►
strtoul.h
►
wchar_io.h
►
Src
►
MSL_Common_Embedded
►
PPC_EABI
►
MSL_C++
►
Runtime
►
REL
►
SSystem
►
TRK_MINNOW_DOLPHIN
►
Z2AudioLib
►
DynamicLink.cpp
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
scanf.h
Go to the documentation of this file.
1
#ifndef _MSL_COMMON_SCANF_H
2
#define _MSL_COMMON_SCANF_H
3
4
#include "
ansi_files.h
"
5
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
10
enum
__ReadProcActions
{
__GetAChar
,
__UngetAChar
,
__TestForError
};
11
12
enum
__WReadProcActions
{
__GetAwChar
,
__UngetAwChar
,
__TestForwcsError
};
13
14
typedef
struct
{
15
char
*
CharStr
;
16
size_t
MaxCharCount
;
17
size_t
CharsWritten
;
18
}
__OutStrCtrl
;
14
typedef
struct
{
…
};
19
20
typedef
struct
{
21
char
*
NextChar
;
22
int
NullCharDetected
;
23
}
__InStrCtrl
;
20
typedef
struct
{
…
};
24
25
typedef
struct
{
26
wchar_t
*
wCharStr
;
27
size_t
MaxCharCount
;
28
size_t
CharsWritten
;
29
}
__wOutStrCtrl
;
25
typedef
struct
{
…
};
30
31
typedef
struct
{
32
wchar_t
*
wNextChar
;
33
int
wNullCharDetected
;
34
}
__wInStrCtrl
;
31
typedef
struct
{
…
};
35
36
int
__StringRead
(
void
* str,
int
ch,
int
behavior);
37
38
#ifdef __cplusplus
39
}
40
#endif
41
42
#endif
/* _MSL_COMMON_SCANF_H */
ansi_files.h
__WReadProcActions
__WReadProcActions
Definition
scanf.h:12
__TestForwcsError
@ __TestForwcsError
Definition
scanf.h:12
__GetAwChar
@ __GetAwChar
Definition
scanf.h:12
__UngetAwChar
@ __UngetAwChar
Definition
scanf.h:12
__ReadProcActions
__ReadProcActions
Definition
scanf.h:10
__GetAChar
@ __GetAChar
Definition
scanf.h:10
__UngetAChar
@ __UngetAChar
Definition
scanf.h:10
__TestForError
@ __TestForError
Definition
scanf.h:10
__StringRead
int __StringRead(void *str, int ch, int behavior)
Definition
scanf.c:4
__InStrCtrl
Definition
scanf.h:20
__InStrCtrl::NullCharDetected
int NullCharDetected
Definition
scanf.h:22
__InStrCtrl::NextChar
char * NextChar
Definition
scanf.h:21
__OutStrCtrl
Definition
scanf.h:14
__OutStrCtrl::CharsWritten
size_t CharsWritten
Definition
scanf.h:17
__OutStrCtrl::CharStr
char * CharStr
Definition
scanf.h:15
__OutStrCtrl::MaxCharCount
size_t MaxCharCount
Definition
scanf.h:16
__wInStrCtrl
Definition
scanf.h:31
__wInStrCtrl::wNextChar
wchar_t * wNextChar
Definition
scanf.h:32
__wInStrCtrl::wNullCharDetected
int wNullCharDetected
Definition
scanf.h:33
__wOutStrCtrl
Definition
scanf.h:25
__wOutStrCtrl::wCharStr
wchar_t * wCharStr
Definition
scanf.h:26
__wOutStrCtrl::MaxCharCount
size_t MaxCharCount
Definition
scanf.h:27
__wOutStrCtrl::CharsWritten
size_t CharsWritten
Definition
scanf.h:28
src
PowerPC_EABI_Support
MSL
MSL_C
MSL_Common
Include
scanf.h
Generated by
1.12.0