2025-03-16 05:49:29 +01:00
|
|
|
|
// 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
|
|
|
|
|
|
2025-01-14 18:53:15 +01:00
|
|
|
|
#include "rlib.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv) { return rlib_main(argc, argv); }
|