Skip to content

Instantly share code, notes, and snippets.

@yakutozcan
Created June 7, 2017 19:17
Show Gist options
  • Save yakutozcan/927b1ab6b16292965281bbd85ee4013b to your computer and use it in GitHub Desktop.
Save yakutozcan/927b1ab6b16292965281bbd85ee4013b to your computer and use it in GitHub Desktop.
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