Skip to content

Commit 9baccfb

Browse files
committed
Change indentation style
1 parent 4a7ddf1 commit 9baccfb

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

0x02-functions_nested_loops/0-holberton.c

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
*/
88
int main(void)
99
{
10-
char school[10] = "_putchar";
11-
int i;
12-
for (i = 0; i < 8; i++)
13-
{
14-
_putchar(school[i]);
15-
}
16-
_putchar(10);
17-
return (0);
10+
char school[10] = "_putchar";
11+
12+
int i;
13+
14+
for (i = 0; i < 8; i++)
15+
{
16+
_putchar(school[i]);
17+
}
18+
_putchar(10);
19+
return (0);
1820
}

0 commit comments

Comments
 (0)