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