mercurial/cext/revlog.h
author Raphaël Gomès <rgomes@octobus.net>
Thu, 07 Dec 2023 14:19:02 +0100
branchstable
changeset 51169 71bd09bebbe3
parent 44467 9db11679f8ac
permissions -rw-r--r--
relnotes: add 6.6.1

/*
 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_ */