blob: 14cf977be0a663ebdf275b8abfc37837e2b53af5 [file] [log] [blame]
Paul Sokolovsky76a90f22014-01-13 22:31:01 +02001typedef 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
8void int_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in);
9mp_obj_t int_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in);