2020-02-25 21:33:33 -06:00

22 lines
241 B
C

#ifndef _ISTR_H
#define _ISTR_H
#ifdef __cplusplus
extern "C" {
#endif
#include "Python.h"
typedef struct {
PyUnicodeObject str;
PyObject * canonical;
} istrobject;
PyObject* istr_init(void);
#ifdef __cplusplus
}
#endif
#endif