Created
June 7, 2017 19:17
-
-
Save yakutozcan/927b1ab6b16292965281bbd85ee4013b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
char* StringToChar(String command){ | |
if(command.length()!=0){ | |
char *p = const_cast<char*>(command.c_str()); | |
return p; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment