summaryrefslogtreecommitdiffstatshomepage
path: root/py/objtuple.h
blob: 9c672fe3f5474ec797229c151fa1bc59255c9b51 (plain) (blame)
1
2
3
4
5
6
7
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);