20 lines
344 B
C++
20 lines
344 B
C++
/**
|
|
builtin commands
|
|
*/
|
|
|
|
#ifndef CMDS_H
|
|
#define CMDS_H
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <unistd.h>
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
namespace Cmds {
|
|
int cdExecute(const vector<string>* args);
|
|
int exitExecute(const vector<string>*);
|
|
int helpExecute(const vector<string>*);
|
|
}
|
|
|
|
#endif // CMDS_H
|