12 lines
319 B
C
Raw Normal View History

2025-03-16 05:49:29 +01:00
// Written by retoor@molodetz.nl
// Main entry point for the program which calls the rcov_main function with
// command line arguments.
// Includes the header file "rcov.h" for accessing the prototype of rcov_main.
// MIT License
2025-01-14 18:53:15 +01:00
#include "rcov.h"
2025-03-16 05:49:29 +01:00
int main(int argc, char *argv[]) { return rcov_main(argc, argv); }