contrib/fuzz/pyutil.h
author Augie Fackler <augie@google.com>
Wed, 19 Dec 2018 21:57:23 -0500
changeset 41013 ef103c96ed33
child 43859 8766728dbce6
permissions -rw-r--r--
fuzz: extract Python initialization to utility package Avoids code duplication between fuzzers of parsers.so. Differential Revision: https://phab.mercurial-scm.org/D5461

#include <Python.h>

namespace contrib
{

void initpy(const char *cselfpath);
PyObject *pyglobals();

} /* namespace contrib */