mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-02-18 13:06:19 +01:00
15 lines
247 B
C
15 lines
247 B
C
![]() |
#ifndef DISPLAY_H__
|
||
|
#define DISPLAY_H__
|
||
|
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void display_init (uint32_t *background);
|
||
|
void display_vprintf (const char *fmt, va_list args);
|
||
|
void display_printf (const char* fmt, ...);
|
||
|
|
||
|
|
||
|
#endif
|