tuxbot-bot/venv/lib/python3.7/site-packages/multidict/_istr.h
2019-12-16 18:12:10 +01:00

21 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