mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-22 13:35:35 -04:00
7 lines
144 B
C
7 lines
144 B
C
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;
|