Header and source file cleanup

This commit is contained in:
John J. Camilleri
2021-09-21 22:28:44 +02:00
parent 71dac482c8
commit b4b8572af3
8 changed files with 81 additions and 2204 deletions

View File

@@ -12,13 +12,13 @@ typedef struct {
PgfRevision revision;
} PGFObject;
extern PyObject *PGFError;
PyObject *PGFError;
PgfExnType handleError(PgfExn err);
PgfText *PyUnicode_AsPgfText(PyObject *pystr);
PyObject *PyUnicode_FromPgfText(PgfText *text);
extern PgfUnmarshaller unmarshaller;
extern PgfMarshaller marshaller;
PgfUnmarshaller unmarshaller;
PgfMarshaller marshaller;
#endif // PYPGF_FFI_H_