mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
b3e01b3298
Only utf-8 encoding is supported.
10 lines
206 B
C
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
|