18 lines
423 B
C
18 lines
423 B
C
|
#ifndef CMDS_H
|
||
|
#define CMDS_H
|
||
|
#include "../msh-console-library/commandexecutor.h"
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <unistd.h>
|
||
|
using std::string;
|
||
|
using std::vector;
|
||
|
|
||
|
namespace Cmds {
|
||
|
int cdExecute(const vector<string>* args, CommandExecutor*);
|
||
|
int exitExecute(const vector<string>*, CommandExecutor*);
|
||
|
int helpExecute(const vector<string>*, CommandExecutor*);
|
||
|
}
|
||
|
|
||
|
#endif // CMDS_H
|