mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
8 lines
214 B
C
8 lines
214 B
C
typedef struct _mp_obj_tuple_t {
|
|
mp_obj_base_t base;
|
|
machine_uint_t len;
|
|
mp_obj_t items[];
|
|
} mp_obj_tuple_t;
|
|
|
|
void tuple_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in);
|