mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
16 lines
322 B
C
16 lines
322 B
C
#ifndef PYPGF_MARSHALLER_H_
|
|
#define PYPGF_MARSHALLER_H_
|
|
|
|
#define PY_SSIZE_T_CLEAN
|
|
#include <Python.h>
|
|
|
|
#include <pgf/pgf.h>
|
|
|
|
PgfText *PyUnicode_AsPgfText(PyObject *pystr);
|
|
PyObject *PyUnicode_FromPgfText(PgfText *text);
|
|
|
|
extern PgfUnmarshaller unmarshaller;
|
|
extern PgfMarshaller marshaller;
|
|
|
|
#endif // PYPGF_MARSHALLER_H_
|