Modifications
Jump to navigation
Jump to search
- mfe_get_args was created to have access to the front-end command line parameters. Here is an example how to use it
int argc; char **argv; mfe_get_args(&argc, &argv); for (int i=0 ; i<argc ; i++) puts(argv[i]);