/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2022, Ivaylo Ivanov */ #ifndef DEBUG_H_ /* Include guard */ #define DEBUG_H_ extern void draw_text(volatile char *fb, char *text, int textX, int textY, int width, int stride); long int debug_linecount = 0; #endif