summaryrefslogtreecommitdiffstats
path: root/movement/filesystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'movement/filesystem.h')
-rw-r--r--movement/filesystem.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/movement/filesystem.h b/movement/filesystem.h
index 3cd3d092..fa3d9d1a 100644
--- a/movement/filesystem.h
+++ b/movement/filesystem.h
@@ -96,9 +96,10 @@ bool filesystem_write_file(char *filename, char *text, int32_t length);
*/
bool filesystem_append_file(char *filename, char *text, int32_t length);
-/** @brief Handles the interactive file browser when Movement is plugged in to USB.
- * @param line The command that the user typed into the serial console.
- */
-void filesystem_process_command(char *line);
+int filesystem_cmd_ls(int argc, char *argv[]);
+int filesystem_cmd_cat(int argc, char *argv[]);
+int filesystem_cmd_df(int argc, char *argv[]);
+int filesystem_cmd_rm(int argc, char *argv[]);
+int filesystem_cmd_echo(int argc, char *argv[]);
#endif // FILESYSTEM_H_