Sign in
android
/
platform
/
external
/
stg
/
HEAD
/
.
/
test_cases
/
diff_tests
/
misc
/
enum_const.0.c
blob: 27da38319ee341305ed8598c4ea4a66660478943 [
file
] [
log
] [
blame
]
typedef
enum
Foo
{
FOO_ONE
=
1
,
FOO_TWO
=
100
,
FOO_THREE
=
3
,
}
Foo
;
Foo
getEnum
(
Foo
foo_enum
)
{
return
foo_enum
;
}