829
|
1 /* start of AUTO matically checked vim: set ts=4 : */
|
7
|
2 {
|
|
3 if (test)
|
|
4 cmd1;
|
|
5 cmd2;
|
|
6 }
|
|
7
|
|
8 {
|
|
9 if (test)
|
|
10 cmd1;
|
|
11 else
|
|
12 cmd2;
|
|
13 }
|
|
14
|
|
15 {
|
|
16 if (test)
|
|
17 {
|
|
18 cmd1;
|
|
19 cmd2;
|
|
20 }
|
|
21 }
|
|
22
|
|
23 {
|
|
24 if (test)
|
|
25 {
|
|
26 cmd1;
|
|
27 else
|
|
28 }
|
|
29 }
|
|
30
|
|
31 {
|
|
32 while (this)
|
|
33 if (test)
|
|
34 cmd1;
|
|
35 cmd2;
|
|
36 }
|
|
37
|
|
38 {
|
|
39 while (this)
|
|
40 if (test)
|
|
41 cmd1;
|
|
42 else
|
|
43 cmd2;
|
|
44 }
|
|
45
|
|
46 {
|
|
47 if (test)
|
|
48 {
|
|
49 cmd;
|
|
50 }
|
|
51
|
|
52 if (test)
|
|
53 cmd;
|
|
54 }
|
|
55
|
|
56 {
|
|
57 if (test) {
|
|
58 cmd;
|
|
59 }
|
|
60
|
|
61 if (test) cmd;
|
|
62 }
|
|
63
|
|
64 {
|
|
65 cmd1;
|
|
66 for (blah)
|
|
67 while (this)
|
|
68 if (test)
|
|
69 cmd2;
|
|
70 cmd3;
|
|
71 }
|
|
72
|
|
73 {
|
|
74 cmd1;
|
|
75 for (blah)
|
|
76 while (this)
|
|
77 if (test)
|
|
78 cmd2;
|
|
79 cmd3;
|
|
80
|
|
81 if (test)
|
|
82 {
|
|
83 cmd1;
|
|
84 cmd2;
|
|
85 cmd3;
|
|
86 }
|
|
87 }
|
|
88
|
|
89
|
|
90 /* Test for 'cindent' do/while mixed with if/else: */
|
|
91
|
|
92 {
|
|
93 do
|
|
94 if (asdf)
|
|
95 asdfasd;
|
|
96 while (cond);
|
|
97
|
|
98 do
|
|
99 if (asdf)
|
|
100 while (asdf)
|
|
101 asdf;
|
|
102 while (asdf);
|
|
103 }
|
|
104
|
|
105 /* Test for 'cindent' with two ) on a continuation line */
|
|
106 {
|
|
107 if (asdfasdf;asldkfj asdlkfj as;ldkfj sal;d
|
|
108 aal;sdkjf ( ;asldfkja;sldfk
|
|
109 al;sdjfka ;slkdf ) sa;ldkjfsa dlk;)
|
|
110 line up here;
|
|
111 }
|
|
112
|
|
113
|
|
114 /* C++ tests: */
|
|
115
|
|
116 // foo() these three lines should remain in column 0
|
|
117 // {
|
|
118 // }
|
|
119
|
|
120 /* Test for continuation and unterminated lines: */
|
|
121 {
|
|
122 i = 99 + 14325 +
|
|
123 21345 +
|
|
124 21345 +
|
|
125 21345 + ( 21345 +
|
|
126 21345) +
|
|
127 2345 +
|
|
128 1234;
|
|
129 c = 1;
|
|
130 }
|
|
131
|
|
132 /*
|
|
133 testje for indent with empty line
|
|
134
|
|
135 here */
|
|
136
|
|
137 {
|
|
138 if (testing &&
|
|
139 not a joke ||
|
|
140 line up here)
|
|
141 hay;
|
|
142 if (testing &&
|
|
143 (not a joke || testing
|
|
144 )line up here)
|
|
145 hay;
|
|
146 if (testing &&
|
|
147 (not a joke || testing
|
|
148 line up here))
|
|
149 hay;
|
|
150 }
|
|
151
|
|
152
|
|
153 {
|
|
154 switch (c)
|
|
155 {
|
|
156 case xx:
|
|
157 do
|
|
158 if (asdf)
|
|
159 do
|
|
160 asdfasdf;
|
|
161 while (asdf);
|
|
162 else
|
|
163 asdfasdf;
|
|
164 while (cond);
|
|
165 case yy:
|
|
166 case xx:
|
|
167 case zz:
|
|
168 testing;
|
|
169 }
|
|
170 }
|
|
171
|
|
172 {
|
|
173 if (cond) {
|
|
174 foo;
|
|
175 }
|
|
176 else
|
|
177 {
|
|
178 bar;
|
|
179 }
|
|
180 }
|
|
181
|
|
182 {
|
|
183 if (alskdfj ;alsdkfjal;skdjf (;sadlkfsa ;dlkf j;alksdfj ;alskdjf
|
|
184 alsdkfj (asldk;fj
|
|
185 awith cino=(0 ;lf this one goes to below the paren with ==
|
|
186 ;laksjfd ;lsakdjf ;alskdf asd)
|
|
187 asdfasdf;)))
|
|
188 asdfasdf;
|
|
189 }
|
|
190
|
|
191 int
|
|
192 func(a, b)
|
|
193 int a;
|
|
194 int c;
|
|
195 {
|
|
196 if (c1 && (c2 ||
|
|
197 c3))
|
|
198 foo;
|
|
199 if (c1 &&
|
|
200 (c2 || c3)
|
|
201 )
|
|
202 }
|
|
203
|
|
204 {
|
|
205 while (asd)
|
|
206 {
|
|
207 if (asdf)
|
|
208 if (test)
|
|
209 if (that)
|
|
210 {
|
|
211 if (asdf)
|
|
212 do
|
|
213 cdasd;
|
|
214 while (as
|
|
215 df);
|
|
216 }
|
|
217 else
|
|
218 if (asdf)
|
|
219 asdf;
|
|
220 else
|
|
221 asdf;
|
|
222 asdf;
|
|
223 }
|
|
224 }
|
|
225
|
|
226 {
|
|
227 s = "/*"; b = ';'
|
|
228 s = "/*"; b = ';';
|
|
229 a = b;
|
|
230 }
|
|
231
|
|
232 {
|
|
233 switch (a)
|
|
234 {
|
|
235 case a:
|
|
236 switch (t)
|
|
237 {
|
|
238 case 1:
|
|
239 cmd;
|
|
240 break;
|
|
241 case 2:
|
|
242 cmd;
|
|
243 break;
|
|
244 }
|
|
245 cmd;
|
|
246 break;
|
|
247 case b:
|
|
248 {
|
|
249 int i;
|
|
250 cmd;
|
|
251 }
|
|
252 break;
|
|
253 case c: {
|
|
254 int i;
|
|
255 cmd;
|
|
256 }
|
|
257 case d: if (cond &&
|
|
258 test) { /* this line doesn't work right */
|
|
259 int i;
|
|
260 cmd;
|
|
261 }
|
|
262 break;
|
|
263 }
|
|
264 }
|
|
265
|
|
266 {
|
|
267 if (!(vim_strchr(p_cpo, CPO_BUFOPTGLOB) != NULL && entering) &&
|
|
268 (bp_to->b_p_initialized ||
|
|
269 (!entering && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
|
|
270 return;
|
|
271 label :
|
|
272 asdf = asdf ?
|
|
273 asdf : asdf;
|
|
274 asdf = asdf ?
|
|
275 asdf: asdf;
|
|
276 }
|
|
277
|
|
278 /* Special Comments : This function has the added complexity (compared */
|
|
279 /* : to addtolist) of having to check for a detail */
|
|
280 /* : texture and add that to the list first. */
|
|
281
|
|
282 char *(array[100]) = {
|
|
283 "testje",
|
|
284 "foo",
|
|
285 "bar",
|
|
286 }
|
|
287
|
|
288 enum soppie
|
|
289 {
|
|
290 yes = 0,
|
|
291 no,
|
|
292 maybe
|
|
293 };
|
|
294
|
|
295 typedef enum soppie
|
|
296 {
|
|
297 yes = 0,
|
|
298 no,
|
|
299 maybe
|
|
300 };
|
|
301
|
|
302 {
|
|
303 int a,
|
|
304 b;
|
|
305 }
|
|
306
|
|
307 {
|
|
308 struct Type
|
|
309 {
|
|
310 int i;
|
|
311 char *str;
|
|
312 } var[] =
|
|
313 {
|
|
314 0, "zero",
|
|
315 1, "one",
|
|
316 2, "two",
|
|
317 3, "three"
|
|
318 };
|
|
319
|
|
320 float matrix[3][3] =
|
|
321 {
|
|
322 {
|
|
323 0,
|
|
324 1,
|
|
325 2
|
|
326 },
|
|
327 {
|
|
328 3,
|
|
329 4,
|
|
330 5
|
|
331 },
|
|
332 {
|
|
333 6,
|
|
334 7,
|
|
335 8
|
|
336 }
|
|
337 };
|
|
338 }
|
|
339
|
|
340 {
|
|
341 /* blah ( blah */
|
|
342 /* where does this go? */
|
|
343
|
|
344 /* blah ( blah */
|
|
345 cmd;
|
|
346
|
|
347 func(arg1,
|
|
348 /* comment */
|
|
349 arg2);
|
|
350 a;
|
|
351 {
|
|
352 b;
|
|
353 {
|
|
354 c; /* Hey, NOW it indents?! */
|
|
355 }
|
|
356 }
|
|
357
|
|
358 {
|
|
359 func(arg1,
|
|
360 arg2,
|
|
361 arg3);
|
|
362 /* Hey, what am I doing here? Is this coz of the ","? */
|
|
363 }
|
|
364 }
|
|
365
|
|
366 main ()
|
|
367 {
|
|
368 if (cond)
|
|
369 {
|
|
370 a = b;
|
|
371 }
|
|
372 if (cond) {
|
|
373 a = c;
|
|
374 }
|
|
375 if (cond)
|
|
376 a = d;
|
|
377 return;
|
|
378 }
|
|
379
|
|
380 {
|
|
381 case 2: if (asdf &&
|
|
382 asdfasdf)
|
|
383 aasdf;
|
|
384 a = 9;
|
|
385 case 3: if (asdf)
|
|
386 aasdf;
|
|
387 a = 9;
|
|
388 case 4: x = 1;
|
|
389 y = 2;
|
|
390
|
|
391 label: if (asdf)
|
|
392 here;
|
|
393
|
|
394 label: if (asdf &&
|
|
395 asdfasdf)
|
|
396 {
|
|
397 }
|
|
398
|
|
399 label: if (asdf &&
|
|
400 asdfasdf) {
|
|
401 there;
|
|
402 }
|
|
403
|
|
404 label: if (asdf &&
|
|
405 asdfasdf)
|
|
406 there;
|
|
407 }
|
|
408
|
|
409 {
|
|
410 /*
|
|
411 hello with ":set comments= cino=c5"
|
|
412 */
|
|
413
|
|
414 /*
|
|
415 hello with ":set comments= cino="
|
|
416 */
|
|
417 }
|
|
418
|
|
419
|
|
420 {
|
|
421 if (a < b) {
|
|
422 a = a + 1;
|
|
423 } else
|
|
424 a = a + 2;
|
|
425
|
|
426 if (a)
|
|
427 do {
|
|
428 testing;
|
|
429 } while (asdfasdf);
|
|
430 a = b + 1;
|
|
431 asdfasdf
|
|
432 }
|
|
433
|
|
434 class bob
|
|
435 {
|
|
436 int foo() {return 1;}
|
|
437 int bar;
|
|
438 }
|
|
439
|
|
440 main()
|
|
441 {
|
|
442 while(1)
|
|
443 if (foo)
|
|
444 {
|
|
445 bar;
|
|
446 }
|
|
447 else {
|
|
448 asdf;
|
|
449 }
|
|
450 misplacedline;
|
|
451 }
|
|
452
|
|
453 {
|
|
454 if (clipboard.state == SELECT_DONE
|
|
455 && ((row == clipboard.start.lnum
|
|
456 && col >= clipboard.start.col)
|
|
457 || row > clipboard.start.lnum))
|
|
458 }
|
|
459
|
|
460 {
|
|
461 if (1) {i += 4;}
|
|
462 where_am_i;
|
|
463 return 0;
|
|
464 }
|
|
465
|
|
466 {
|
|
467 {
|
|
468 } // sdf(asdf
|
|
469 if (asdf)
|
|
470 asd;
|
|
471 }
|
|
472
|
|
473 {
|
|
474 label1:
|
|
475 label2:
|
|
476 }
|
|
477
|
|
478 {
|
|
479 int fooRet = foo(pBar1, false /*fKB*/,
|
|
480 true /*fPTB*/, 3 /*nT*/, false /*fDF*/);
|
|
481 f() {
|
|
482 for ( i = 0;
|
|
483 i < m;
|
|
484 /* c */ i++ ) {
|
|
485 a = b;
|
|
486 }
|
|
487 }
|
|
488 }
|
|
489
|
|
490 {
|
|
491 f1(/*comment*/);
|
|
492 f2();
|
|
493 }
|
|
494
|
|
495 {
|
|
496 do {
|
|
497 if (foo) {
|
|
498 } else
|
|
499 ;
|
|
500 } while (foo);
|
|
501 foo(); // was wrong
|
|
502 }
|
|
503
|
|
504 int x; // no extra indent because of the ;
|
|
505 void func()
|
|
506 {
|
|
507 }
|
|
508
|
|
509 char *tab[] = {"aaa",
|
|
510 "};", /* }; */ NULL}
|
|
511 int indented;
|
|
512 {}
|
|
513
|
|
514 char *a[] = {"aaa", "bbb",
|
|
515 "ccc", NULL};
|
|
516 // here
|
|
517
|
|
518 char *tab[] = {"aaa",
|
|
519 "xx", /* xx */}; /* asdf */
|
|
520 int not_indented;
|
|
521
|
|
522 {
|
|
523 do {
|
|
524 switch (bla)
|
|
525 {
|
|
526 case 1: if (foo)
|
|
527 bar;
|
|
528 }
|
|
529 } while (boo);
|
|
530 wrong;
|
|
531 }
|
|
532
|
|
533 int foo,
|
|
534 bar;
|
|
535 int foo;
|
|
536
|
|
537 #if defined(foo) \
|
|
538 && defined(bar)
|
|
539 char * xx = "asdf\
|
|
540 foo\
|
|
541 bor";
|
|
542 int x;
|
|
543
|
|
544 char *foo = "asdf\
|
|
545 asdf\
|
|
546 asdf",
|
|
547 *bar;
|
|
548
|
|
549 void f()
|
|
550 {
|
|
551 #if defined(foo) \
|
|
552 && defined(bar)
|
|
553 char *foo = "asdf\
|
|
554 asdf\
|
|
555 asdf",
|
|
556 *bar;
|
|
557 {
|
|
558 int i;
|
|
559 char *foo = "asdf\
|
|
560 asdf\
|
|
561 asdf",
|
|
562 *bar;
|
|
563 }
|
|
564 #endif
|
|
565 }
|
|
566 #endif
|
|
567
|
|
568 int y; // comment
|
|
569 // comment
|
|
570
|
|
571 // comment
|
|
572
|
|
573 {
|
|
574 Constructor(int a,
|
|
575 int b ) : BaseClass(a)
|
|
576 {
|
|
577 }
|
|
578 }
|
|
579
|
|
580 void foo()
|
|
581 {
|
|
582 char one,
|
|
583 two;
|
|
584 struct bla piet,
|
|
585 jan;
|
|
586 enum foo kees,
|
|
587 jannie;
|
|
588 static unsigned sdf,
|
|
589 krap;
|
|
590 unsigned int piet,
|
|
591 jan;
|
|
592 int
|
|
593 kees,
|
|
594 jan;
|
|
595 }
|
|
596
|
|
597 {
|
|
598 t(int f,
|
|
599 int d); // )
|
|
600 d();
|
|
601 }
|
|
602
|
|
603 Constructor::Constructor(int a,
|
|
604 int b
|
|
605 ) :
|
|
606 BaseClass(a,
|
|
607 b,
|
|
608 c),
|
|
609 mMember(b),
|
|
610 {
|
|
611 }
|
|
612
|
|
613 Constructor::Constructor(int a,
|
|
614 int b ) :
|
|
615 BaseClass(a)
|
|
616 {
|
|
617 }
|
|
618
|
|
619 Constructor::Constructor(int a,
|
|
620 int b ) /*x*/ : /*x*/ BaseClass(a),
|
828
|
621 member(b)
|
7
|
622 {
|
|
623 }
|
|
624
|
|
625 class CAbc :
|
|
626 public BaseClass1,
|
|
627 protected BaseClass2
|
|
628 {
|
|
629 int Test() { return FALSE; }
|
|
630 int Test1() { return TRUE; }
|
|
631
|
|
632 CAbc(int a, int b ) :
|
|
633 BaseClass(a)
|
|
634 {
|
|
635 switch(xxx)
|
|
636 {
|
|
637 case abc:
|
|
638 asdf();
|
|
639 break;
|
|
640
|
|
641 case 999:
|
|
642 baer();
|
|
643 break;
|
|
644 }
|
|
645 }
|
|
646
|
|
647 public: // <-- this was incoreectly indented before!!
|
|
648 void testfall();
|
|
649 protected:
|
|
650 void testfall();
|
|
651 };
|
|
652
|
|
653 class CAbc : public BaseClass1,
|
828
|
654 protected BaseClass2
|
7
|
655 {
|
|
656 };
|
|
657
|
|
658 static struct
|
|
659 {
|
|
660 int a;
|
|
661 int b;
|
|
662 } variable[COUNT] =
|
|
663 {
|
|
664 {
|
|
665 123,
|
|
666 456
|
|
667 },
|
|
668 {
|
|
669 123,
|
|
670 456
|
|
671 }
|
|
672 };
|
|
673
|
|
674 static struct
|
|
675 {
|
|
676 int a;
|
|
677 int b;
|
|
678 } variable[COUNT] =
|
|
679 {
|
|
680 { 123, 456 },
|
|
681 { 123, 456 }
|
|
682 };
|
|
683
|
|
684 void asdf() /* ind_maxparen may cause trouble here */
|
|
685 {
|
|
686 if ((0
|
|
687 && 1
|
|
688 && 1
|
|
689 && 1
|
|
690 && 1
|
|
691 && 1
|
|
692 && 1
|
|
693 && 1
|
|
694 && 1
|
|
695 && 1
|
|
696 && 1
|
|
697 && 1
|
|
698 && 1
|
|
699 && 1
|
|
700 && 1
|
|
701 && 1
|
|
702 && 1
|
|
703 && 1
|
|
704 && 1
|
|
705 && 1
|
|
706 && 1
|
|
707 && 1
|
|
708 && 1
|
|
709 && 1
|
|
710 && 1
|
|
711 && 1)) break;
|
|
712 }
|
|
713
|
827
|
714 foo()
|
|
715 {
|
|
716 a = cond ? foo() : asdf
|
|
717 + asdf;
|
|
718
|
|
719 a = cond ?
|
|
720 foo() : asdf
|
|
721 + asdf;
|
|
722 }
|
|
723
|
|
724 int main(void)
|
|
725 {
|
|
726 if (a)
|
|
727 if (b)
|
|
728 2;
|
|
729 else 3;
|
|
730 next_line_of_code();
|
|
731 }
|
|
732
|
828
|
733 barry()
|
|
734 {
|
|
735 Foo::Foo (int one,
|
|
736 int two)
|
|
737 : something(4)
|
|
738 {}
|
|
739 }
|
|
740
|
|
741 barry()
|
|
742 {
|
|
743 Foo::Foo (int one, int two)
|
|
744 : something(4)
|
|
745 {}
|
|
746 }
|
|
747
|
|
748 Constructor::Constructor(int a,
|
|
749 int b
|
|
750 ) :
|
|
751 BaseClass(a,
|
|
752 b,
|
|
753 c),
|
|
754 mMember(b)
|
|
755 {
|
|
756 }
|
829
|
757 int main ()
|
|
758 {
|
|
759 if (lala)
|
|
760 do
|
|
761 ++(*lolo);
|
|
762 while (lili
|
|
763 && lele);
|
|
764 lulu;
|
|
765 }
|
828
|
766
|
829
|
767 int main ()
|
|
768 {
|
|
769 switch (c)
|
|
770 {
|
|
771 case 'c': if (cond)
|
|
772 {
|
|
773 }
|
|
774 }
|
|
775 }
|
|
776
|
|
777 main()
|
|
778 {
|
|
779 (void) MyFancyFuasdfadsfnction(
|
|
780 argument);
|
|
781 }
|
|
782
|
|
783 main()
|
|
784 {
|
|
785 char foo[] = "/*";
|
|
786 /* as
|
|
787 df */
|
|
788 hello
|
|
789 }
|
7
|
790 /* end of AUTO */
|
|
791
|
|
792
|
|
793 {
|
|
794
|
|
795 /* this is
|
|
796 * a real serious
|
|
797 * about life, the
|
|
798 * universe, and the
|
|
799 * rest important big
|
|
800 * comment
|
|
801 */
|
|
802 /* insert " about life, the universe, and the rest" after "serious" */
|
|
803 }
|
|
804
|
|
805
|
|
806 {
|
|
807 /*
|
|
808 * Testing for comments, without 'cin' set
|
|
809 */
|
|
810 about life
|
|
811
|
|
812 /*
|
|
813 * what happens here?
|
|
814 */
|
|
815 there
|
|
816
|
|
817 /*
|
|
818 the end of the comment, try inserting a line below */
|
|
819 line
|
|
820
|
|
821 /* how about
|
|
822 hello
|
|
823 this one */
|
|
824 }
|
|
825
|
|
826
|
|
827 {
|
|
828 var = this + that + vec[0] * vec[0]
|
|
829 + vec[1] * vec[1]
|
|
830 + vec2[2] * vec[2];
|
|
831 }
|
|
832
|
|
833
|
|
834 {
|
|
835 asdf asdflkajds f;
|
|
836 if (tes & ting) {
|
|
837 asdf asdf asdf ;
|
|
838 asdfa sdf asdf;
|
|
839 }
|
|
840 testing1;
|
|
841 if (tes & ting)
|
|
842 {
|
|
843 asdf asdf asdf ;
|
|
844 asdfa sdf asdf;
|
|
845 }
|
|
846 testing2;
|
|
847 }
|
|
848
|
|
849
|
|
850 main ( int first_par, /*
|
|
851 * Comment for
|
|
852 * first par
|
|
853 */
|
|
854 int second_par /*
|
|
855 * Comment for
|
|
856 * second par
|
|
857 */
|
|
858 )
|
|
859 {
|
|
860 func( first_par, /*
|
|
861 * Comment for
|
|
862 * first par
|
|
863 */
|
|
864 second_par /*
|
|
865 * Comment for
|
|
866 * second par
|
|
867 */
|
|
868 );
|
|
869
|
|
870 }
|
|
871
|
|
872
|
|
873 {
|
|
874 do
|
|
875 {
|
|
876 if ()
|
|
877 {
|
|
878 if ()
|
|
879 asdf;
|
|
880 else
|
|
881 asdf;
|
|
882 }
|
|
883 } while ();
|
|
884 cmd; /* this should go under the } */
|
|
885 }
|
|
886
|
|
887
|
|
888 void f()
|
|
889 {
|
|
890 if ( k() ) {
|
|
891 l();
|
|
892
|
|
893 } else { /* Start (two words) end */
|
|
894 m();
|
|
895 }
|
|
896
|
|
897 n();
|
|
898 }
|
|
899
|
|
900
|
|
901 void f()
|
|
902 {
|
|
903 if ( k() )
|
|
904 {
|
|
905 l();
|
|
906 } else { /* Start (two words) end */
|
|
907 m();
|
|
908 }
|
|
909 n(); /* should be under the if () */
|
|
910 }
|
|
911
|
|
912
|
|
913 void bar(void)
|
|
914 {
|
|
915 static array[2][2] =
|
|
916 {
|
|
917 { 1, 2 },
|
|
918 { 3, 4 },
|
|
919 }
|
|
920
|
|
921 while (a)
|
|
922 {
|
|
923 foo(&a);
|
|
924 }
|
|
925
|
|
926 {
|
|
927 int a;
|
|
928 {
|
|
929 a = a + 1;
|
|
930 }
|
|
931 }
|
|
932 b = a;
|
|
933 }
|
|
934
|
|
935 void func(void)
|
|
936 {
|
|
937 a = 1;
|
|
938 {
|
|
939 b = 2;
|
|
940 }
|
|
941 c = 3;
|
|
942 d = 4;
|
|
943 }
|
|
944 /* foo */
|
|
945
|
|
946
|
|
947 a()
|
|
948 {
|
|
949 do {
|
|
950 a = a +
|
|
951 a;
|
|
952 } while ( a ); /* add text under this line */
|
|
953 here
|
|
954 if ( a )
|
|
955 a;
|
|
956 }
|
|
957
|
|
958
|
|
959 a()
|
|
960 {
|
|
961 label1:
|
|
962 /* hmm */
|
|
963 // comment
|
|
964 label2: b();
|
|
965 label3 /* post */:
|
|
966 /* pre */ label4:
|
|
967 f(/*com*/);
|
|
968 if (/*com*/)
|
|
969 cmd();
|
|
970 }
|
|
971
|
|
972
|
|
973 /*
|
|
974 * A simple comment
|
|
975 */
|
|
976
|
|
977 /*
|
|
978 ** A different comment
|
|
979 */
|
|
980
|
|
981
|
|
982 void f()
|
|
983 {
|
|
984
|
|
985 /*********
|
|
986 A comment.
|
|
987 *********/
|
|
988 }
|
|
989
|
|
990
|
|
991 void f()
|
|
992 {
|
|
993
|
|
994 /*********
|
|
995 A comment.
|
|
996 *********/
|
|
997 }
|
|
998
|
|
999
|
|
1000 void f()
|
|
1001 {
|
|
1002 c = c1 &&
|
|
1003 (
|
|
1004 c2 ||
|
|
1005 c3
|
|
1006 ) && c4;
|
|
1007 }
|
|
1008
|
|
1009
|
|
1010 void f()
|
|
1011 {
|
|
1012 c = c1 &&
|
|
1013 (
|
|
1014 c2 ||
|
|
1015 c3
|
|
1016 ) && c4;
|
|
1017 }
|
|
1018
|
|
1019
|
|
1020 void f()
|
|
1021 {
|
|
1022 c = c1 &&
|
|
1023 (
|
|
1024 c2 ||
|
|
1025 c3
|
|
1026 ) && c4;
|
|
1027 }
|
|
1028
|
|
1029
|
|
1030 void f()
|
|
1031 {
|
|
1032 if ( c1
|
|
1033 && ( c2
|
|
1034 || c3))
|
|
1035 foo;
|
|
1036 }
|
|
1037
|
|
1038
|
|
1039 void f()
|
|
1040 {
|
|
1041 if ( c1
|
|
1042 && ( c2
|
|
1043 || c3))
|
|
1044 foo;
|
|
1045 }
|
|
1046
|
|
1047
|
|
1048 void f()
|
|
1049 {
|
|
1050 c = c1 && (
|
|
1051 c2 ||
|
|
1052 c3
|
|
1053 ) && c4;
|
|
1054 if (
|
|
1055 c1 && c2
|
|
1056 )
|
|
1057 foo;
|
|
1058 }
|
|
1059
|
|
1060
|
|
1061 void f()
|
|
1062 {
|
|
1063 c = c1 && (
|
|
1064 c2 ||
|
|
1065 c3
|
|
1066 ) && c4;
|
|
1067 if (
|
|
1068 c1 && c2
|
|
1069 )
|
|
1070 foo;
|
|
1071 }
|
|
1072
|
|
1073
|
|
1074 void f()
|
|
1075 {
|
|
1076 switch (x)
|
|
1077 {
|
|
1078 case 1:
|
|
1079 a = b;
|
|
1080 break;
|
|
1081 default:
|
|
1082 a = 0;
|
|
1083 break;
|
|
1084 }
|
|
1085 }
|
|
1086
|
|
1087
|
|
1088 void f()
|
|
1089 {
|
|
1090 invokeme(
|
|
1091 argu,
|
|
1092 ment);
|
|
1093 invokeme(
|
|
1094 argu,
|
|
1095 ment
|
|
1096 );
|
|
1097 invokeme(argu,
|
|
1098 ment
|
|
1099 );
|
|
1100 }
|
|
1101
|
|
1102
|
|
1103 void f()
|
|
1104 {
|
|
1105 statement;
|
|
1106 // comment 1
|
|
1107 // comment 2
|
|
1108 }
|
|
1109
|
|
1110
|
|
1111 void f()
|
|
1112 {
|
|
1113 statement;
|
|
1114 // comment 1
|
|
1115 // comment 2
|
|
1116 }
|
|
1117
|
|
1118
|
|
1119 class CAbc
|
|
1120 {
|
|
1121 int Test() { return FALSE; }
|
|
1122
|
|
1123 public: // comment
|
|
1124 void testfall();
|
|
1125 protected:
|
|
1126 void testfall();
|
|
1127 };
|
|
1128
|
|
1129
|
828
|
1130 void
|
|
1131 foo()
|
|
1132 {
|
|
1133 if (a)
|
|
1134 {
|
|
1135 } else
|
|
1136 asdf;
|
|
1137 }
|
|
1138
|
|
1139
|
7
|
1140 {
|
|
1141 averylongfunctionnamelongfunctionnameaverylongfunctionname()->asd(
|
|
1142 asdasdf,
|
|
1143 func(asdf,
|
|
1144 asdfadsf),
|
|
1145 asdfasdf
|
|
1146 );
|
|
1147
|
|
1148 /* those are ugly, but consequent */
|
|
1149
|
|
1150 func()->asd(asdasdf,
|
|
1151 averylongfunctionname(
|
|
1152 abc,
|
|
1153 dec)->averylongfunctionname(
|
|
1154 asdfadsf,
|
|
1155 asdfasdf,
|
|
1156 asdfasdf,
|
|
1157 ),
|
|
1158 func(asdfadf,
|
|
1159 asdfasdf
|
|
1160 ),
|
|
1161 asdasdf
|
|
1162 );
|
|
1163
|
|
1164 averylongfunctionnameaverylongfunctionnameavery()->asd(fasdf(
|
|
1165 abc,
|
|
1166 dec)->asdfasdfasdf(
|
|
1167 asdfadsf,
|
|
1168 asdfasdf,
|
|
1169 asdfasdf,
|
|
1170 ),
|
|
1171 func(asdfadf,
|
|
1172 asdfasdf),
|
|
1173 asdasdf
|
|
1174 );
|
|
1175 }
|
|
1176
|
829
|
1177
|
|
1178 int main ()
|
|
1179 {
|
|
1180 if (cond1 &&
|
|
1181 cond2
|
|
1182 )
|
|
1183 foo;
|
|
1184 }
|
|
1185
|
2776
|
1186
|
|
1187 void func(int a
|
|
1188 #if defined(FOO)
|
|
1189 , int b
|
|
1190 , int c
|
|
1191 #endif
|
|
1192 )
|
|
1193 {
|
|
1194 }
|
|
1195
|
|
1196
|
|
1197 void
|
|
1198 func(int a
|
|
1199 #if defined(FOO)
|
|
1200 , int b
|
|
1201 , int c
|
|
1202 #endif
|
|
1203 )
|
|
1204 {
|
|
1205 }
|
|
1206
|
2805
|
1207
|
|
1208 void func(void)
|
|
1209 {
|
|
1210 if(x==y)
|
|
1211 if(y==z)
|
|
1212 foo=1;
|
|
1213 else { bar=1;
|
|
1214 baz=2;
|
|
1215 }
|
|
1216 printf("Foo!\n");
|
|
1217 }
|
|
1218
|
2843
|
1219 void func1(void)
|
|
1220 {
|
|
1221 char* tab[] = {"foo", "bar",
|
|
1222 "baz", "quux",
|
|
1223 "this line used", "to be indented incorrectly"};
|
|
1224 foo();
|
|
1225 }
|
|
1226
|
|
1227 void func2(void)
|
|
1228 {
|
|
1229 int tab[] =
|
|
1230 {1, 2,
|
|
1231 3, 4,
|
|
1232 5, 6};
|
|
1233
|
|
1234 printf("This line used to be indented incorrectly.\n");
|
|
1235 }
|
|
1236
|
|
1237 void func3(void)
|
|
1238 {
|
|
1239 int tab[] = {
|
|
1240 1, 2,
|
|
1241 3, 4,
|
|
1242 5, 6};
|
|
1243
|
|
1244 printf("Don't you dare indent this line incorrectly!\n);
|
|
1245 }
|
|
1246
|
2807
|
1247
|
|
1248 void func(void)
|
|
1249 {
|
|
1250 cout << "a"
|
|
1251 << "b"
|
|
1252 << ") :"
|
|
1253 << "c";
|
|
1254 }
|
|
1255
|
2809
|
1256
|
|
1257 void func(void)
|
|
1258 {
|
|
1259 /*
|
|
1260 * This is a comment.
|
|
1261 */
|
|
1262 foo();
|
|
1263 }
|
|
1264
|