#ifndef lcstrings_h #define lcstrings_h typedef struct { PyObject_HEAD SSTRINGS *ss; int owner; } LCStringsObject; extern PyTypeObject LCStrings_Type; #define LCStrings_Check(op) ((op)->ob_type == &LCStrings_Type) PyObject *LCStrings_New(char *s); PyObject *LCStrings_FromStrings(SSTRINGS *s); PyObject *LCStrings_FromStringsDealloc(SSTRINGS *s); #endif /* lcstrings_h */