i`v used strtok and strcpy but i have this error :
warning c4996 strtok this function or variable may be unsafe. consider using strtok_s insted . to disable deprecation usee........
can u help me please?
class move :
public Command
{
public:
move();//c'tor
~move(void);//d'tor
void Execute();// executes the move command from the file
inline void setParam1(const unsigned long& val);//sets the val to be the first parameter for the move command
inline void setParam2(const unsigned long& val);//sets val to be the second parameter for the ove command
};