From 5780fdaca5a2cd49c8218aec48cb6647374089ec Mon Sep 17 00:00:00 2001 From: kx Date: Wed, 28 Sep 2022 17:07:19 +0300 Subject: users list command implementation --- src/shell.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/shell.h (limited to 'src/shell.h') diff --git a/src/shell.h b/src/shell.h new file mode 100644 index 0000000..15b4278 --- /dev/null +++ b/src/shell.h @@ -0,0 +1,28 @@ + +#ifndef __SHELL_H +#define __SHELL_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +extern int com_id( char *arg ); +extern int com_ls( char *arg ); +extern int com_more( char *arg ); +extern int com_vi( char *arg ); +extern int com_rename( char *arg ); +extern int com_stat( char *arg ); +extern int com_delete( char *arg ); +extern int com_cd( char *arg ); +extern int com_ping( char *arg ); +extern int com_pwd( char *ignore ); + + + +#ifdef __cplusplus +} +#endif + +#endif /* __SHELL_H */ -- cgit v1.2.3