// Written by retoor@molodetz.nl
|
|
|
|
// This source code defines the main function for a program, passing the command-line arguments to another function called rcase_main and
|
|
// returning its result.
|
|
|
|
// #include "rcase.h": This include statement brings in the rcase.h header file which is not part of the standard library.
|
|
|
|
// MIT License
|
|
|
|
#include "rcase.h"
|
|
|
|
int main(int argc, char *argv[]) { return rcase_main(argc, argv); } |