opt_bbb.c revision 1.1
1/* $NetBSD: opt_bbb.c,v 1.1 2021/10/16 03:20:13 rillig Exp $ */ 2/* $FreeBSD$ */ 3 4#indent input 5/* 6 * This is a block comment. 7 */ 8/* This is not a block comment since it is single-line. */ 9/* 10 * This is a second block comment. 11 */ 12/* This is not a block comment. */ 13/* 14 * Documentation of global_variable. 15 */ 16int global_variable; 17/* 18 * Documentation of function_declaration. 19 */ 20void function_declaration(void); 21/* 22 * Documentation of function_definition. 23 */ 24void 25function_definition(void) 26{ 27} 28#indent end 29 30#indent run -bbb 31/* 32 * This is a block comment. 33 */ 34/* This is not a block comment since it is single-line. */ 35 36/* 37 * This is a second block comment. 38 */ 39/* This is not a block comment. */ 40 41/* 42 * Documentation of global_variable. 43 */ 44int global_variable; 45 46/* 47 * Documentation of function_declaration. 48 */ 49void function_declaration(void); 50 51/* 52 * Documentation of function_definition. 53 */ 54void 55function_definition(void) 56{ 57} 58#indent end 59 60#indent input 61/* 62 * This is a block comment. 63 */ 64/* This is not a block comment since it is single-line. */ 65/* 66 * This is a second block comment. 67 */ 68/* This is not a block comment. */ 69/* 70 * Documentation of global_variable. 71 */ 72int global_variable; 73/* 74 * Documentation of function_declaration. 75 */ 76void function_declaration(void); 77/* 78 * Documentation of function_definition. 79 */ 80void 81function_definition(void) 82{ 83} 84#indent end 85 86#indent run -nbbb 87/* 88 * This is a block comment. 89 */ 90/* This is not a block comment since it is single-line. */ 91/* 92 * This is a second block comment. 93 */ 94/* This is not a block comment. */ 95/* 96 * Documentation of global_variable. 97 */ 98int global_variable; 99/* 100 * Documentation of function_declaration. 101 */ 102void function_declaration(void); 103/* 104 * Documentation of function_definition. 105 */ 106void 107function_definition(void) 108{ 109} 110#indent end 111