1 /* $NetBSD: opt_cs.c,v 1.3 2021/10/16 21:32:10 rillig Exp $ */ 2 /* $FreeBSD$ */ 3 4 /* 5 * Tests for the options '-cs' and '-ncs'. 6 * 7 * The option '-cs' forces a space after the parentheses of a cast. 8 * 9 * The option '-ncs' removes all whitespace after the parentheses of a cast. 10 */ 11 12 #indent input 13 int i0 = (int)3.0; 14 int i1 = (int) 3.0; 15 int i3 = (int) 3.0; 16 #indent end 17 18 #indent run -cs 19 int i0 = (int) 3.0; 20 int i1 = (int) 3.0; 21 int i3 = (int) 3.0; 22 #indent end 23 24 #indent run -ncs 25 int i0 = (int)3.0; 26 int i1 = (int)3.0; 27 int i3 = (int)3.0; 28 #indent end 29