]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
5b1d7137 WD |
2 | /* |
3 | * (C) Copyright 2001 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
5b1d7137 WD |
5 | */ |
6 | ||
eca86fad SG |
7 | #ifndef _CLI_HUSH_H_ |
8 | #define _CLI_HUSH_H_ | |
5b1d7137 WD |
9 | |
10 | #define FLAG_EXIT_FROM_LOOP 1 | |
11 | #define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */ | |
12 | #define FLAG_REPARSING (1 << 2) /* >=2nd pass */ | |
87b6398b | 13 | #define FLAG_CONT_ON_NEWLINE (1 << 3) /* continue when we see \n */ |
5b1d7137 WD |
14 | |
15 | extern int u_boot_hush_start(void); | |
c8a2079e | 16 | extern int parse_string_outer(const char *, int); |
5b1d7137 WD |
17 | extern int parse_file_outer(void); |
18 | ||
81473f67 HS |
19 | int set_local_var(const char *s, int flg_export); |
20 | void unset_local_var(const char *name); | |
eae3b064 | 21 | char *get_local_var(const char *s); |
81473f67 HS |
22 | |
23 | #if defined(CONFIG_HUSH_INIT_VAR) | |
24 | extern int hush_init_var (void); | |
25 | #endif | |
5b1d7137 | 26 | #endif |