opt_bbb.c revision 1.2
1/* $NetBSD: opt_bbb.c,v 1.2 2021/10/16 05:40:17 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 run -nbbb 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