Skip to content

Commit

Permalink
wrap the debug printf
Browse files Browse the repository at this point in the history
  • Loading branch information
vladak authored Mar 10, 2024
1 parent 621ae6a commit a42a24a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/toupper-table.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ main(void)
c = 'a';
while (i < sizeof (table) / sizeof (table[0])) {
table[i] = c - ('a' - 'A');
// printf("%c -> %c\n", c, table[i]);
#ifdef DEBUG
printf("%c -> %c\n", c, table[i]);
#endif
i++;
c++;
}
Expand Down

0 comments on commit a42a24a

Please sign in to comment.