mirror of
https://github.com/Alcaro/Flips.git
synced 2026-03-22 10:04:23 -05:00
19 lines
512 B
C++
19 lines
512 B
C++
//Module name: Floating IPS, command line frontend
|
|
//Author: Alcaro
|
|
//Date: See Git history
|
|
//Licence: GPL v3.0 or higher
|
|
|
|
#include "flips.h"
|
|
|
|
#ifdef FLIPS_CLI
|
|
file* file::create(const char * filename) { return file::create_libc(filename); }
|
|
filewrite* filewrite::create(const char * filename) { return filewrite::create_libc(filename); }
|
|
filemap* filemap::create(const char * filename) { return filemap::create_fallback(filename); }
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
return flipsmain(argc, argv);
|
|
}
|
|
#endif
|