blob: 13f0bc2646f50c2b8d16d3c53e6036cf7da79e80 [file] [log] [blame]
Radek Krejci7136a8e2015-08-17 13:37:30 +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 *
Radek Krejci54f6fb32016-02-24 12:56:39 +01008 * 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
Radek Krejci7136a8e2015-08-17 13:37:30 +020013 */
14
Michal Vaskof3e59f12015-06-18 11:53:56 +020015#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 "../../src/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
42extern COMMAND commands[];
43
Michal Vaskof3e59f12015-06-18 11:53:56 +020044#endif /* COMMANDS_H_ */