| 300 | * The startup script file name, NULL if none has been set. |
| 301 | * |
| 302 | * Side effects: |
| 303 | * None. |
| 304 | * |
| 305 | *---------------------------------------------------------------------- |
| 306 | */ |
| 307 | |
| 308 | CONST char * |
| 309 | TclGetStartupScriptFileName(void) |
| 310 | { |
| 311 | Tcl_Obj *path = Tcl_GetStartupScript(NULL); |
| 312 | |
| 313 | if (path == NULL) { |
| 314 | return NULL; |
nothing calls this directly
no test coverage detected