blob: b1d442e74fa6bc85d7d32f49d84c9b524183f29c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# include <cstdlib>
# include <iostream>
# include <luma/main.hh>
# include <string>
# include <unistd.h>
luma::dat_t luma::dat;
int main(int argc, char * * argv) {
if(argc < 0x2) {
std::cout << "Missing argument \"file\".\n";
std::exit(EXIT_FAILURE);
}
if((::access(argv[0x1], F_OK) == 0x0)) {
luma::stdlibsock::gfx::crtwin("luma test"s,0x0,0x0,0x400,0x300,false);
}
else {
std::cout << "The file doesn't exist.\n";
std::exit(EXIT_FAILURE);
}
std::exit(EXIT_SUCCESS);
}
|