main

This is the main function for this program, it calls optlist to parse the command line input displays the results of the parsing.

extern (C) nothrow @nogc @live
int
main
(
int argc
,
char** argv
)

Parameters

argc int

number of parameters

argv char**

parameter list

Effects: parses command line parameters

Return Value

Type: int

EXIT_SUCCESS for success, otherwise EXIT_FAILURE.

Meta