15-roman-number-gcd/main_driver.c
2025-02-13 16:52:14 +01:00

19 lines
No EOL
494 B
C
Executable file

/*----------------------------------------------------------
* 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;
}