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
|
|
|
|
2023-02-16 06:11:53 +03:00
|
|
|
bool gterm_init(struct fb_info **ret, size_t *_fbs_count,
|
|
|
|
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
|