tclunixsam76.c

来自「这是一个Linux下的集成开发环境」· C语言 代码 · 共 27 行

C
27
字号
/* * tclUnixSam76.c -- * *	Initializes the Tcl stand-alone module Tcl version 7.6. * * Copyright (c) 1996, Expert Interface Technologies * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * */#include "tclPort.h"#include "tclInt.h"#include "tclSamLib.c"int			SamTcl_Init _ANSI_ARGS_((Tcl_Interp *interp));intTclsam_Init(interp)    Tcl_Interp *interp;		/* Interpreter to initialize. */{    Tcl_Eval(interp, "set tcl_library {}");    return LoadScripts(interp);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?