]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/hush.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / hush.h
CommitLineData
5b1d7137
WD
1/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
5b1d7137
WD
6 */
7
8#ifndef _HUSH_H_
9#define _HUSH_H_
10
11#define FLAG_EXIT_FROM_LOOP 1
12#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
13#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
14
15extern int u_boot_hush_start(void);
c8a2079e 16extern int parse_string_outer(const char *, int);
5b1d7137
WD
17extern int parse_file_outer(void);
18
81473f67
HS
19int set_local_var(const char *s, int flg_export);
20void unset_local_var(const char *name);
eae3b064 21char *get_local_var(const char *s);
81473f67
HS
22
23#if defined(CONFIG_HUSH_INIT_VAR)
24extern int hush_init_var (void);
25#endif
5b1d7137 26#endif