summaryrefslogtreecommitdiff
path: root/example/empty_example.c
blob: c275526f46832a6c78e409bb9820e328d64f6a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define FBGL_IMPLEMENTATION
#include "../include/fbgl/fbgl.h"

#include <stdio.h>

int main()
{
	printf("version %s\n", fbgl_version_info());
	printf("name %s\n", fbgl_name_info());
	fbgl_t buffer;
	fbgl_init("/dev/fb0", &buffer);

	return 0;
}