Why not simply:
Code:
char * look(char *str, char ch)
{
   while(*str != ch && *str)
      str++;
   return str;
}