blob: 18d7fdcc2f59d729ced5a6bc74c1f1d52216a889 [file] [log] [blame]
Radek Krejcied5acc52019-04-25 15:57:04 +02001/**
2 * @file main.c
3 * @author Michal Vasko <mvasko@cesnet.cz>
4 * @brief libyang's yanglint tool commands header
5 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef COMMANDS_H_
16#define COMMANDS_H_
17
18#ifdef __GNUC__
19# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
20#else
21# define UNUSED(x) UNUSED_ ## x
22#endif
23
24#include <stdlib.h>
25
26#include "libyang.h"
27
28#define PROMPT "> "
29
30struct model_hint {
31 char* hint;
32 struct model_hint* next;
33};
34
35typedef struct {
36 char *name; /* User printable name of the function. */
37 int (*func)(const char*); /* Function to call to do the command. */
38 void (*help_func)(void); /* Display command help. */
39 char *helpstring; /* Documentation for this function. */
40} COMMAND;
41
42LYS_INFORMAT get_schema_format(const char *path);
43
44extern COMMAND commands[];
45
46#endif /* COMMANDS_H_ */