Skip to content

Commit 0fc0c9e

Browse files
committed
fixed betty styling error
1 parent 465e0ef commit 0fc0c9e

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*~
22
*'
33
*#
4+
.swp

0x03-debugging/.1-main.c.swp

12 KB
Binary file not shown.

0x03-debugging/1-main.c

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77

88
int main(void)
99
{
10-
int i;
10+
int i;
1111

12-
printf("Infinite loop incoming :(\n");
12+
printf("Infinite loop incoming :(\n");
1313

14-
i = 0;
15-
/**
16-
while (i < 10)
17-
{
18-
putchar(i);
19-
}
20-
*/
21-
printf("Infinite loop avoided! \\o/\n");
14+
i = 0;
15+
16+
/* while (i < 10)*/
17+
/*{*/
18+
/* putchar(i);*/
19+
/*}*/
20+
21+
printf("Infinite loop avoided! \\o/\n");
2222

23-
return (0);
23+
return (0);
2424
}

0 commit comments

Comments
 (0)