1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/scripting/python/open.h
Witold Filipczyk b3e01b3298 [scripting] python scripting with Python3.
Only utf-8 encoding is supported.
2019-11-11 13:33:37 +01:00

10 lines
206 B
C

#ifndef EL__SCRIPTING_PYTHON_OPEN_H
#define EL__SCRIPTING_PYTHON_OPEN_H
#include <Python.h>
PyObject *python_open(PyObject *self, PyObject *args, PyObject *kwargs);
extern char python_open_doc[];
#endif