opt_sc.c revision 1.2
1/* $NetBSD: opt_sc.c,v 1.2 2021/10/16 05:40:17 rillig Exp $ */
2/* $FreeBSD$ */
3
4#indent input
5/* comment
6without
7asterisks
8*/
9
10/*
11** This comment style is used by Lua.
12*/
13
14/**
15 * Javadoc, adopted by several other programming languages.
16 */
17#indent end
18
19#indent run -sc
20/*
21 * comment without asterisks
22 */
23
24/* $ XXX: The additional '*' is debatable. */
25/*
26 * * This comment style is used by Lua.
27 */
28
29/**
30 * Javadoc, adopted by several other programming languages.
31 */
32#indent end
33
34#indent run -nsc
35/*
36comment without asterisks
37 */
38
39/* $ This comment, as rewritten by indent, is not actually used by Lua. */
40/*
41 * This comment style is used by Lua.
42 */
43
44/**
45 * Javadoc, adopted by several other programming languages.
46 */
47#indent end
48