[BACK]Return to lsym_binary_op.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / tests / usr.bin / indent

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/tests/usr.bin/indent/lsym_binary_op.c between version 1.3 and 1.4

version 1.3, 2022/04/22 21:21:20 version 1.4, 2022/04/23 09:35:26
Line 22 
Line 22 
  */   */
   
 #indent input  #indent input
 // TODO: add input  void
   binary_operators(void)
   {
           /* In the order of appearance in C11 6.5. */
           a = a * a;
           a = a / a;
           a = a % a;
           a = a + a;
           a = a - a;
           a = a << a;
           a = a >> a;
           a = a < a;
           a = a > a;
           a = a <= a;
           a = a >= a;
           a = a == a;
           a = a != a;
           a = a & a;
           a = a ^ a;
           a = a | a;
           a = a && a;
           a = a || a;
           a = a ? a : a;
           a = a;
           a *= a;
           a /= a;
           a %= a;
           a += a;
           a -= a;
           a <<= a;
           a >>= a;
           a &= a;
           a ^= a;
           a |= a;
           a = a, a;
   }
 #indent end  #indent end
   
 #indent run-equals-input  #indent run-equals-input

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb <webmaster@jp.NetBSD.org>