xref: /dpdk/app/graph/module_api.h (revision 3f90eda5b7fb39f70de4d25fd7562ed9f330bebc)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2023 Marvell.
3  */
4 
5 #ifndef APP_GRAPH_MODULE_API_H
6 #define APP_GRAPH_MODULE_API_H
7 
8 #include <stdint.h>
9 #include <stdbool.h>
10 
11 #include "cli.h"
12 #include "conn.h"
13 /*
14  * Externs
15  */
16 extern volatile bool force_quit;
17 
18 bool app_graph_exit(void);
19 #endif
20