2021-03-02 08:05:14 +03:00
|
|
|
#ifndef __LIB__GTERM_H__
|
|
|
|
#define __LIB__GTERM_H__
|
|
|
|
|
2022-10-04 01:58:00 +03:00
|
|
|
#include <stddef.h>
|
2021-03-02 08:05:14 +03:00
|
|
|
#include <stdbool.h>
|
2022-10-04 01:58:00 +03:00
|
|
|
#include <lib/fb.h>
|
2021-03-02 08:05:14 +03:00
|
|
|
|
2021-04-07 03:10:28 +03:00
|
|
|
extern struct fb_info fbinfo;
|
|
|
|
|
2022-10-04 01:58:00 +03:00
|
|
|
bool gterm_init(char *config, size_t width, size_t height);
|
2021-08-16 21:00:37 +03:00
|
|
|
|
2021-03-02 08:05:14 +03:00
|
|
|
#endif
|