#pragma once void shell_mount(struct console *con, const char **argv, size_t argc); void shell_unmount(struct console *con, const char **argv, size_t argc); void shell_format(struct console *con, const char **argv, size_t argc); void shell_mkdir(struct console *con, const char **argv, size_t argc); void shell_rmdir(struct console *con, const char **argv, size_t argc); void shell_stat(struct console *con, const char **argv, size_t argc); void shell_cat(struct console *con, const char **argv, size_t argc); void shell_write(struct console *con, const char **argv, size_t argc); void shell_append(struct console *con, const char **argv, size_t argc); void shell_mv(struct console *con, const char **argv, size_t argc); void shell_rm(struct console *con, const char **argv, size_t argc); void shell_ls(struct console *con, const char **argv, size_t argc);