You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
846 B
14 lines
846 B
#pragma once
|
|
|
|
int shell_mount(struct console *con, size_t argc, const char **argv);
|
|
int shell_unmount(struct console *con, size_t argc, const char **argv);
|
|
int shell_format(struct console *con, size_t argc, const char **argv);
|
|
int shell_mkdir(struct console *con, size_t argc, const char **argv);
|
|
int shell_rmdir(struct console *con, size_t argc, const char **argv);
|
|
int shell_stat(struct console *con, size_t argc, const char **argv);
|
|
int shell_cat(struct console *con, size_t argc, const char **argv);
|
|
int shell_write(struct console *con, size_t argc, const char **argv);
|
|
int shell_append(struct console *con, size_t argc, const char **argv);
|
|
int shell_mv(struct console *con, size_t argc, const char **argv);
|
|
int shell_rm(struct console *con, size_t argc, const char **argv);
|
|
int shell_ls(struct console *con, size_t argc, const char **argv);
|
|
|