// Written by retoor@molodetz.nl // This code serves as the main entry point for a program using the `rlib` library. It takes command-line arguments and passes them to the // `rlib_main` function, initiating the program’s execution with these parameters. // Summary of used imports: Includes "rlib.h" which provides functionalities from the rlib library. // MIT License #include "rlib.h" int main(int argc, char **argv) { return rlib_main(argc, argv); }