cli_hush.h 737 B

123456789101112131415161718192021222324252627
  1. /*
  2. * (C) Copyright 2001
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _CLI_HUSH_H_
  8. #define _CLI_HUSH_H_
  9. #define FLAG_EXIT_FROM_LOOP 1
  10. #define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
  11. #define FLAG_REPARSING (1 << 2) /* >=2nd pass */
  12. #define FLAG_CONT_ON_NEWLINE (1 << 3) /* continue when we see \n */
  13. extern int u_boot_hush_start(void);
  14. extern int parse_string_outer(const char *, int);
  15. extern int parse_file_outer(void);
  16. int set_local_var(const char *s, int flg_export);
  17. void unset_local_var(const char *name);
  18. char *get_local_var(const char *s);
  19. #if defined(CONFIG_HUSH_INIT_VAR)
  20. extern int hush_init_var (void);
  21. #endif
  22. #endif