MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / Tcl_GetStartupScript

Function Tcl_GetStartupScript

SRC/tcl/tclMain85.cpp:194–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192 *
193 *----------------------------------------------------------------------
194 */
195
196Tcl_Obj *
197Tcl_GetStartupScript(
198 CONST char **encodingPtr) /* When not NULL, points to storage for the
199 * (CONST char *) that points to the
200 * registered encoding name for the startup
201 * script */
202{
203 if (encodingPtr != NULL) {
204 if (tclStartupScriptEncoding == NULL) {
205 *encodingPtr = NULL;
206 } else {
207 *encodingPtr = Tcl_GetString(tclStartupScriptEncoding);
208 }
209 }
210 return tclStartupScriptPath;
211}
212

Callers 3

TclGetStartupScriptPathFunction · 0.85
tclMain85.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected