Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/main.c b/main.c
- index 5e79b8f..8169694 100644
- --- a/main.c
- +++ b/main.c
- @@ -70,16 +70,16 @@ int main(int argc, char *const *argv)
- LCD_cursor_move(-1);
- optind = optind_old;
- } else if (!lcd_off) {
- - int c;
- - int n = 0;
- - while ((c = getchar()) != EOF) {
- - if (n == LCD_LENGTH) {
- - LCD_putchar('\n');
- - n = 0;
- - }
- - LCD_putchar(c);
- - n++;
- - }
- + // int c;
- + // int n = 0;
- + // while ((c = getchar()) != EOF) {
- + // if (n == LCD_LENGTH) {
- + // LCD_putchar('\n');
- + // n = 0;
- + // }
- + // LCD_putchar(c);
- + // n++;
- + // }
- } else {
- LCD_off();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement