summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/32008-Issue_3034.cpp
blob: 1a110ee8d0b0a2ea4b77dadff345f9ff49cf9b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void main()
{
	while (*stringcur)
	{
#ifdef NO8BIT
		if (((*bufcur++ ^ *stringcur) & 0x7F) != 0)
#else /* NO8BIT */
		if (*bufcur++ != *stringcur)
#endif /* NO8BIT */ /* Issue #3034 */
		{
			break;
		}
	}
}