#ifndef on all header files

This commit is contained in:
Philippe Teuwen 2019-04-11 01:16:25 +02:00
commit 2879599ac4
11 changed files with 37 additions and 0 deletions

View file

@ -8,6 +8,8 @@
// Command line parser core commands
//-----------------------------------------------------------------------------
#ifndef __CLIPARSER_H
#define __CLIPARSER_H
#include "argtable3.h"
#include "util.h"
#include <stdbool.h>
@ -39,3 +41,4 @@ void CLIParserFree(void);
int CLIParamHexToBuf(struct arg_str *argstr, uint8_t *data, int maxdatalen, int *datalen);
int CLIParamStrToBuf(struct arg_str *argstr, uint8_t *data, int maxdatalen, int *datalen);
#endif