Files
Limine/common/lib/gterm.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

12 lines
235 B
C

#ifndef LIB__GTERM_H__
#define LIB__GTERM_H__
#include <stddef.h>
#include <stdbool.h>
#include <lib/fb.h>
bool gterm_init(struct fb_info **ret, size_t *_fbs_count,
char *config, size_t width, size_t height);
#endif