tg 31d2796169 simplify
if ((flags & (1 | 2) == 0) || (flags & (1 | 2) == (1 | 2)))
to
	if (!(flags & 1) ^ !(flags & 2))
which works because ! returns 1 or 0, making the ^ an ^^, and
because XOR survives NOTting its arguments
2009-04-07 19:08:25 +00:00
2009-04-05 12:42:34 +00:00
2009-04-07 19:06:44 +00:00
2009-04-07 19:08:25 +00:00
2008-07-07 12:59:54 +00:00
2009-04-07 19:06:44 +00:00
2009-04-07 19:06:44 +00:00
Description
MirBSD Korn Shell for Jehanne
Languages
C 57.6%
Shell 26%
Roff 13.3%
Perl 2.6%
Makefile 0.5%