Paul Sokolovsky | 76a90f2 | 2014-01-13 22:31:01 +0200 | [diff] [blame^] | 1 | typedef struct _mp_obj_int_t { |
2 | mp_obj_base_t base; | ||||
3 | #if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE | ||||
4 | mp_longint_impl_t val; | ||||
5 | #endif | ||||
6 | } mp_obj_int_t; | ||||
7 | |||||
8 | void int_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in); | ||||
9 | mp_obj_t int_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in); |