core.internal.entrypoint

This module contains the code for C main and any call(s) to initialize the D runtime and call D main.

Templates 1

tmpl_d_cmain()

A template containing C main and any call(s) to initialize druntime and call D main. Any module containing a D main function declaration will cause the compiler to generate a mixin _d_cmain(); statement to inject this code into the module.

Functions
int _d_run_main(int argc, char * * argv, void * mainFunc)
int _Dmain(char[][] args)
int main(int argc, char * * argv)