Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
ff380c25582f3e2645e9d6204d1f966619d4bdd1
/
.
/
py
/
objlist.h
blob: cc8d7de26e435af168819072eba676fbc4b729d0 [
file
] [
log
] [
blame
]
Paul Sokolovsky
18bef25
2014-04-13 06:17:29 +0300
[
diff
] [
blame
]
1
typedef
struct
_mp_obj_list_t
{
2
mp_obj_base_t
base
;
3
machine_uint_t
alloc
;
4
machine_uint_t
len
;
5
mp_obj_t
*
items
;
6
}
mp_obj_list_t
;