Numerus  v2.0.0
Roman numerals conversion and manipulation C library.
main.c
Go to the documentation of this file.
1 
14 #include "numerus.h"
15 
16 
20 int main(int argc, char **args) {
21  numerus_cli(argc, args);
22  return 0;
23 }
Numerus roman numerals library header.
int numerus_cli(int argc, char **args)
Starts a command line interface that converts any typed value to a roman numeral or vice-versa...
Definition: numerus_cli.c:285
int main(int argc, char **args)
Numerus example main that only starts the Numerus CLI.
Definition: main.c:20