cli_hush.h 737 B

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