]> git.proxmox.com Git - mirror_frr.git/blame - lib/clippy.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / lib / clippy.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
29ad6f68
DL
2/*
3 * clippy (CLI preparator in python)
4 * Copyright (C) 2016-2017 David Lamparter for NetDEF, Inc.
29ad6f68
DL
5 */
6
7#ifndef _FRR_CLIPPY_H
8#define _FRR_CLIPPY_H
9
5609b3af 10#include <stdbool.h>
29ad6f68
DL
11#include <Python.h>
12
5e244469
RW
13#ifdef __cplusplus
14extern "C" {
15#endif
16
29ad6f68
DL
17extern PyObject *clippy_parse(PyObject *self, PyObject *args);
18extern PyMODINIT_FUNC command_py_init(void);
5609b3af 19extern bool elf_py_init(PyObject *pymod);
29ad6f68 20
5e244469
RW
21#ifdef __cplusplus
22}
23#endif
24
29ad6f68 25#endif /* _FRR_CLIPPY_H */