diff options
author | Marvin Borner | 2019-09-28 23:08:13 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-28 23:08:13 +0200 |
commit | b9c103e3048d2b28a2606a3b9693ec881425a732 (patch) | |
tree | 492a1bdba84c7dc8fe5eaee5c640cf9341f120ba /src/kernel/commands | |
parent | 4dddb5f5f8611f6df6d2ce2f019cca67a5598cdb (diff) |
Added some documentation
Diffstat (limited to 'src/kernel/commands')
-rw-r--r-- | src/kernel/commands/command.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/kernel/commands/command.h b/src/kernel/commands/command.h index 2a43416..9e402aa 100644 --- a/src/kernel/commands/command.h +++ b/src/kernel/commands/command.h @@ -1,6 +1,11 @@ #ifndef MELVIX_COMMAND_H #define MELVIX_COMMAND_H +/** + * Execute a command in the pseudo shell + * @deprecated - will be replaced by real shell soon + * @param command The desired command + */ void exec_command(char *command); #endif |