#ifndef lcint_h #define lcint_h typedef struct { PyObject_HEAD int *i; int owner; } LCIntObject; extern PyTypeObject LCInt_Type; #define LCInt_Check(op) ((op)->ob_type == &LCInt_Type) PyObject *LCInt_New(int i); PyObject *LCInt_FromInt(int *i); PyObject *LCInt_FromIntDealloc(int *i); #endif /* lcint_h */