summaryrefslogtreecommitdiffstatshomepage
path: root/py/objtuple.h
blob: 6ff38c10ebe1175b78a5dad873d6d8e0b014c06a (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, mp_print_kind_t kind);