//! Create and allocate the program's world @PREFIX@World_t *@PREFIX@Init () { @PREFIX@World_t *wrld = NEW(@PREFIX@World_t); if (wrld == 0) return 0; wrld->name = ProgramName; wrld->err = 0; wrld->verboseFlg = false; wrld->nStrandTys = 1; /* FIXME */ wrld->strandDesc = &Strand_@STRAND@; wrld->globals = NEW(@PREFIX@Globals_t); if (wrld->globals == 0) { FREE(wrld); return 0; } // initialize the input defaults InitDefaults (wrld); return wrld; }
Click to toggle
does not end with </html> tag
does not end with </body> tag
The output has ended thus: return 0; } // initialize the input defaults InitDefaults (wrld); return wrld; }