aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands/command.h
blob: 9e402aac85cdc6b4ad000eb8944c5c753b2a48a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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