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