11.4Srillig/* $NetBSD: opt_lc.c,v 1.4 2022/04/24 09:04:12 rillig Exp $ */ 21.1Srillig 31.1Srillig/* 41.1Srillig * Tests for the option '-lc', which specifies the maximum line length for 51.1Srillig * block comments. This option does not apply to comments to the right of the 61.1Srillig * code though, or to the code itself. 71.1Srillig */ 81.1Srillig 91.4Srillig//indent input 101.2Srillig/* 111.2Srillig * This block comment starts in column 1, it is broken into separate lines. 121.2Srillig */ 131.1Srillig 141.2Srilligint decl; /* This is not a 151.2Srillig * block comment, it is not affected by the option '-lc'. 161.2Srillig */ 171.4Srillig//indent end 181.1Srillig 191.4Srillig//indent run -di0 -c17 -lc38 201.2Srillig/* 211.2Srillig * This block comment starts in column 221.2Srillig * 1, it is broken into separate 231.2Srillig * lines. 241.2Srillig */ 251.2Srillig 261.2Srilligint decl; /* This is not a block comment, it is not affected by the 271.2Srillig * option '-lc'. */ 281.4Srillig//indent end 29