138581Sobrien/* $NetBSD: opt_ts.c,v 1.3 2022/04/24 09:04:12 rillig Exp $ */
238581Sobrien
338581Sobrien/*
438581Sobrien * Tests for the option '-ts', which specifies the width of a single
538581Sobrien * tabulator.
650479Speter */
738581Sobrien
880029Sobrien/*
938581Sobrien * Since in this test, a tab is only worth 4 spaces, the indentation needs
1080029Sobrien * more tabs to reach the indentation of 8 and the alignment at 16.
1180029Sobrien */
1280029Sobrien//indent input
1338581Sobrienint variable;
1480029Sobrien
1538581Sobrienvoid
16125433Srufunction(void)
17125433Sru{
1838581Sobrien	int local_variable;
1938581Sobrien	char local_variable;
20}
21//indent end
22
23//indent run -ts4
24int				variable;
25
26void
27function(void)
28{
29		int				local_variable;
30		char			local_variable;
31}
32//indent end
33