aboutsummaryrefslogtreecommitdiff
path: root/include/cli_hush.h
blob: 007b8d6372faf19e2f783689b722c2f2319af99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * (C) Copyright 2001
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 */

#ifndef _CLI_HUSH_H_
#define _CLI_HUSH_H_

#define FLAG_EXIT_FROM_LOOP 1
#define FLAG_PARSE_SEMICOLON (1 << 1)	  /* symbol ';' is special for parser */
#define FLAG_REPARSING       (1 << 2)	  /* >=2nd pass */
#define FLAG_CONT_ON_NEWLINE (1 << 3)	  /* continue when we see \n */

#if CONFIG_IS_ENABLED(HUSH_OLD_PARSER)
extern int u_boot_hush_start(void);
extern int parse_string_outer(const char *str, int flag);
extern int parse_file_outer(void);
int set_local_var(const char *s, int flg_export);
#else
static inline int u_boot_hush_start(void)
{
	return 0;
}

static inline int parse_string_outer(const char *str, int flag)
{
	return 1;
}

static inline int parse_file_outer(void)
{
	return 0;
}

static inline int set_local_var(const char *s, int flg_export)
{
	return 0;
}
#endif
#if CONFIG_IS_ENABLED(HUSH_MODERN_PARSER)
extern int u_boot_hush_start_modern(void);
extern int parse_string_outer_modern(const char *str, int flag);
extern void parse_and_run_file(void);
int set_local_var_modern(char *s, int flg_export);
#else
static inline int u_boot_hush_start_modern(void)
{
	return 0;
}

static inline int parse_string_outer_modern(const char *str, int flag)
{
	return 1;
}

static inline void parse_and_run_file(void)
{
}

static inline int set_local_var_modern(char *s, int flg_export)
{
	return 0;
}
#endif

void unset_local_var(const char *name);
char *get_local_var(const char *s);

#if defined(CONFIG_HUSH_INIT_VAR)
extern int hush_init_var (void);
#endif
#endif