diff options
Diffstat (limited to 'include/lcdlib.h')
| -rw-r--r-- | include/lcdlib.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/lcdlib.h b/include/lcdlib.h index c514ba0..d8225c2 100644 --- a/include/lcdlib.h +++ b/include/lcdlib.h @@ -15,16 +15,16 @@ along with ct. If not, see <https://www.gnu.org/licenses/>. */ -#include <stdlib.h> #include <stdarg.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> // =================================================================== // Types // =================================================================== -#define LCD_WIDTH 16 +#define LCD_WIDTH 16 #define LCD_HEIGHT 2 enum LCD_WRITE_MODE { L_OVERWRITE, L_SCROLL }; @@ -42,5 +42,4 @@ void lcd_stop_blink(void); void lcd_put_line(const enum LCD_WRITE_MODE mode, const char *line); -void lcd_printf_line(const enum LCD_WRITE_MODE mode, - const char *format, ...); +void lcd_printf_line(const enum LCD_WRITE_MODE mode, const char *format, ...); |
