There is a piece of code:
int p(char *a, char*b)
{
while (*a | *b)
{
if (*a ^ *b)
//...
}
}
and I don't really know what it's doing.
Edit: I understand what the |
and ^
operators do, I just don't know what they'll do with char
values.