summaryrefslogblamecommitdiff
path: root/main.c
blob: 45241d7fc35829d938680ac68a314c2a33f29580 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                       


                    
                             





                                                       
                             
                                        
                                                                                     






                                                    
# 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__initstdlib__gfx();
		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);
}