]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/cli.h
Implement media change flag
[z180-stamp.git] / include / cli.h
index f6fb2abff566c88a1c46767bb28fded74e4d8ec5..28e92be7f6719e09ca0d7d85ec9ebd9961e3ac54 100644 (file)
@@ -1,10 +1,10 @@
 /*
- * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ * (C) Copyright 2014-2016 Leo C. <erbl259-lmu@yahoo.de>
  *
  * (C) Copyright 2014 Google, Inc
  * Simon Glass <sjg@chromium.org>
  *
- * SPDX-License-Identifier:    GPL-2.0+
+ * SPDX-License-Identifier:    GPL-2.0
  */
 
 #ifndef CLI_H
@@ -66,6 +66,15 @@ void cli_loop(void);
  */
 //int cli_simple_parse_line(char *line, char *argv[]);
 
+/*
+ * Run a command.
+ *
+ * @param cmd  Command to run
+ * @param flag Execution flags (CMD_FLAG_...)
+ * @return 0 on success, or != 0 on error.
+ */
+int run_command(const char *cmd, int flag);
+
 int run_command_list(const char *cmd, int len);