int Getpw_Init()

in presentations/tcl/tcl/getpw.c [25:33]


int Getpw_Init(Tcl_Interp *interp)
{
    Tcl_CreateObjCommand(interp,
			 "getpw",
			 GetPW,
			 NULL,
			 (Tcl_CmdDeleteProc *)NULL);
    return TCL_OK;
}