summaryrefslogtreecommitdiffstats
path: root/include/cli.h
blob: e57740086b702722cd1f10af8cb797443443a439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _NFT_CLI_H_
#define _NFT_CLI_H_

#include <config.h>

struct parser_state;
#ifdef HAVE_LIBREADLINE
extern int cli_init(struct nft_ctx *nft, struct mnl_socket *nf_sock,
		    struct nft_cache *cache, struct parser_state *state);
#else
static inline int cli_init(struct nft_ctx *nft, struct mnl_socket *nf_sock,
			   struct nft_cache *cache, struct parser_state *state)
{
        return -1;
}
#endif
extern void cli_exit(void);
extern void cli_display(const char *fmt, va_list ap) __fmtstring(1, 0);

#endif