summaryrefslogtreecommitdiffstats
path: root/src/stringlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stringlist.h')
-rw-r--r--src/stringlist.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stringlist.h b/src/stringlist.h
new file mode 100644
index 0000000..cf1c33a
--- /dev/null
+++ b/src/stringlist.h
@@ -0,0 +1,12 @@
+#ifndef STRINGLIST_H
+#define STRINGLIST_H
+
+#include <Python.h>
+
+typedef struct StringList StringList;
+
+StringList* stringListCreate(size_t);
+StringList* listToCList(PyObject* list);
+PyObject* cListToPyList(StringList*);
+
+#endif