Nested Comments in C -- A recent experience

Tim W Smith ts at cup.portal.com
Sun Mar 18 21:54:58 AEST 1990


How about

	memcpy(
		&x,		/* destination */
		&y,		/* source */
		sizeof(x)	/* count */
	);

Of course, this will lead to arguments about how the parens shoudl go,
e.g.,

	memcpy
	(
		...
	)

vs.

	memcpy
		(
			...
		)

etc. :-)

					Tim Smith



More information about the Comp.lang.c mailing list