Below is part of my program code .
WHat i want do :
For now i check if some byte (i use [number] for shift) from ptr contains specific ascii character. If yes i do something.
When i am in debugging mode and i am above ptr i see that ptr contains a string.
For example
ptr = 0x0354a9e8 "ýýýýÝÝÝ äŃ."
When i call ptr[0]==27 i check if 1st sign in this string is escape. but i really cant find a solution how to iterate this string and try to find some char. For now i must use index, but i want to do something like:
for(i = 0;i<=CountOfCharInString;i++)
{
if (ptr[i]==mySign)
{
Do Something
}
}