opt_sc.c revision 1.1
1/* $NetBSD: opt_sc.c,v 1.1 2021/10/16 03:20:13 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 input
35/* comment
36without
37asterisks
38*/
39
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
49#indent run -nsc
50/*
51comment without asterisks
52 */
53
54/* $ This comment, as rewritten by indent, is not actually used by Lua. */
55/*
56 * This comment style is used by Lua.
57 */
58
59/**
60 * Javadoc, adopted by several other programming languages.
61 */
62#indent end
63