#ifndef COMMANDUTILS_H
#define COMMANDUTILS_H

#include <string>
#include <vector>

namespace CommandUtils {
    bool splitString(const std::string& rawCommand, std::string& command, std::vector<std::string>& args);
}

#endif