I have read from a file a char * MyBuffer (supose 65536 chars)
I must to use only cstring functions to analize it to tokenize ?(using some conditions) or is it better to transform to string and use the c++ string functions?
I'm a bit confused.
I dont want to do a copy of MyBuffer, so, in case of need :
Can I create a string Pointer to point to MyBufer.?
Thanks