parent
ab5e9d532e
commit
a7504ad99c
@ -1,3 +1,3 @@ |
||||
#pragma once |
||||
|
||||
void shell_echo(struct console *con, const char **argv, size_t argc); |
||||
void shell_echo(struct console *con, size_t argc, const char **argv); |
||||
|
@ -1,14 +1,14 @@ |
||||
#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); |
||||
void shell_mount(struct console *con, size_t argc, const char **argv); |
||||
void shell_unmount(struct console *con, size_t argc, const char **argv); |
||||
void shell_format(struct console *con, size_t argc, const char **argv); |
||||
void shell_mkdir(struct console *con, size_t argc, const char **argv); |
||||
void shell_rmdir(struct console *con, size_t argc, const char **argv); |
||||
void shell_stat(struct console *con, size_t argc, const char **argv); |
||||
void shell_cat(struct console *con, size_t argc, const char **argv); |
||||
void shell_write(struct console *con, size_t argc, const char **argv); |
||||
void shell_append(struct console *con, size_t argc, const char **argv); |
||||
void shell_mv(struct console *con, size_t argc, const char **argv); |
||||
void shell_rm(struct console *con, size_t argc, const char **argv); |
||||
void shell_ls(struct console *con, size_t argc, const char **argv); |
||||
|
@ -1,3 +1,3 @@ |
||||
#pragma once |
||||
|
||||
void shell_version(struct console *con, const char **argv, size_t argc); |
||||
void shell_version(struct console *con, size_t argc, const char **argv); |
||||
|
Loading…
Reference in new issue