Home | History | Annotate | Line # | Download | only in indent
opt_i.c revision 1.1
      1 /* $NetBSD: opt_i.c,v 1.1 2021/10/22 20:54:36 rillig Exp $ */
      2 /* $FreeBSD$ */
      3 
      4 #indent input
      5 void
      6 example(void)
      7 {
      8    if (1 > 0) if (2 > 1) return yes; return no;
      9 }
     10 #indent end
     11 
     12 #indent run -i3
     13 void
     14 example(void)
     15 {
     16    if (1 > 0)
     17       if (2 > 1)
     18 	 return yes;
     19    return no;
     20 }
     21 #indent end
     22