This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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 programs 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); }