#ifndef lcchar_h #define lcchar_h typedef struct { PyObject_HEAD char *c; int owner; } LCCharObject; extern PyTypeObject LCChar_Type; #define LCChar_Check(op) ((op)->ob_type == &LCChar_Type) PyObject *LCChar_New(int i); PyObject *LCChar_FromChar(char *c); PyObject *LCChar_FromCharDealloc(char *c); #endif /* lcchar_h */