You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
144 B
7 lines
144 B
11 years ago
|
typedef struct _mp_obj_list_t {
|
||
|
mp_obj_base_t base;
|
||
|
machine_uint_t alloc;
|
||
|
machine_uint_t len;
|
||
|
mp_obj_t *items;
|
||
|
} mp_obj_list_t;
|