Modifications: Difference between revisions

From MidasWiki
Jump to navigation Jump to search
(Created page with "* 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, &...")
(No difference)

Revision as of 10:55, 31 July 2013

  • 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]);