This commit is contained in:
Marc Tismonar 2025-02-13 15:16:35 +01:00
parent 45200bb640
commit d6cffc16e4
12 changed files with 954 additions and 0 deletions

19
main_driver.c Executable file
View file

@ -0,0 +1,19 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* The Roman Number Calculator.
* ----------------------------------------------------------
*/
/**
* The main entry point of the application.
*/
int main(int argc, char *argv[])
{
/* No implementation needed */
return 0;
}