blob: 185c50ea570530a21ca8894b72a1e5669d013b21 [file] [log] [blame]
Radek Krejcie9f13b12020-11-09 17:42:04 +01001/**
2 * @file cmd.h
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @author Radek Krejci <rkrejci@cesnet.cz>
5 * @brief libyang's yanglint tool commands header
6 *
7 * Copyright (c) 2015-2020 CESNET, z.s.p.o.
8 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#ifndef COMMANDS_H_
17#define COMMANDS_H_
18
19#include "libyang.h"
20
21/**
22 * @brief command information
23 */
24typedef struct {
25 char *name; /* User printable name of the function. */
26 void (*func)(struct ly_ctx **ctx, const char *); /* Function to call to do the command. */
27 void (*help_func)(void); /* Display command help. */
28 char *helpstring; /* Documentation for this function. */
29} COMMAND;
30
31/**
32 * @brief The list of available commands.
33 */
34extern COMMAND commands[];
35
36/* cmd_add.c */
37void cmd_add(struct ly_ctx **ctx, const char *cmdline);
38void cmd_add_help(void);
39
40/* cmd_clear.c */
41void cmd_clear(struct ly_ctx **ctx, const char *cmdline);
42void cmd_clear_help(void);
43
44/* cmd_data.c */
45void cmd_data(struct ly_ctx **ctx, const char *cmdline);
46void cmd_data_help(void);
47
48/* cmd_list.c */
49void cmd_list(struct ly_ctx **ctx, const char *cmdline);
50void cmd_list_help(void);
51
52/* cmd_load.c */
53void cmd_load(struct ly_ctx **ctx, const char *cmdline);
54void cmd_load_help(void);
55
56/* cmd_print.c */
57void cmd_print(struct ly_ctx **ctx, const char *cmdline);
58void cmd_print_help(void);
59
60/* cmd_searchpath.c */
61void cmd_searchpath(struct ly_ctx **ctx, const char *cmdline);
62void cmd_searchpath_help(void);
63
64#endif /* COMMANDS_H_ */