mercurial/cext/revlog.h
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 12 Jul 2022 01:13:56 +0200
changeset 49414 3c5d0f879404
parent 44467 9db11679f8ac
permissions -rw-r--r--
perf-unbundle: add a perf command to time the unbundle operation Check documentation for details.

/*
 revlog.h - efficient revlog parsing

 This software may be used and distributed according to the terms of
 the GNU General Public License, incorporated herein by reference.
*/

#ifndef _HG_REVLOG_H_
#define _HG_REVLOG_H_

#include <Python.h>

extern PyTypeObject HgRevlogIndex_Type;

#define HgRevlogIndex_Check(op) PyObject_TypeCheck(op, &HgRevlogIndex_Type)

#endif /* _HG_REVLOG_H_ */