summaryrefslogtreecommitdiff
path: root/main.c
blob: 31bb08f6c67e2dc332e07e885ce2d1c0ffb53c11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# include <luma/main.h>
# include <stdio.h>
# include <stdlib.h>
# include <unistd.h>
struct luma__dat_t luma__dat;
int main(int argc, char * * argv) {
	if(argc < 0x2) {
		printf("Missing argument \"file\".\n");
		exit(EXIT_FAILURE);
	}
	if((access(argv[0x1], F_OK) == 0)) {
		printf("\f");
		luma__stdlibsock__gfx__crtwin("luma test",0x0,0x0,0x400,0x300,false);
	}
	else {
		printf("The file doesn't exist.\n");
		exit(EXIT_FAILURE);
	}
	exit(EXIT_SUCCESS);
}