diff options
author | dgp <dgp@users.sourceforge.net> | 2005-09-09 17:47:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-09-09 17:47:18 (GMT) |
commit | 90b8834c64cb9d111fb0f663393cd5b0696df6cb (patch) | |
tree | 80077a3970c52480b94b10b1c8dbe7282cf8f4aa /generic/tclInt.h | |
parent | 0fa613150f4fab3a1cb24978c8c342293dcf3e56 (diff) | |
download | tcl-90b8834c64cb9d111fb0f663393cd5b0696df6cb.zip tcl-90b8834c64cb9d111fb0f663393cd5b0696df6cb.tar.gz tcl-90b8834c64cb9d111fb0f663393cd5b0696df6cb.tar.bz2 |
* generic/tclInt.h: New internal routine TclObjPrintf()
* generic/tclStringObj.c: is similar to TclFormatObj() but
accepts arguments in non-Tcl_Obj format.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 25b4b78..689f95f 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.249 2005/09/09 15:44:27 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.250 2005/09/09 17:47:18 dgp Exp $ */ #ifndef _TCLINT @@ -2053,6 +2053,7 @@ MODULE_SCOPE int TclMergeReturnOptions(Tcl_Interp *interp, int objc, MODULE_SCOPE int TclObjInvokeNamespace(Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[], Tcl_Namespace *nsPtr, int flags); +MODULE_SCOPE int TclObjPrintf TCL_VARARGS(Tcl_Interp *, arg1); MODULE_SCOPE int TclParseBackslash(CONST char *src, int numBytes, int *readPtr, char *dst); MODULE_SCOPE int TclParseHex(CONST char *src, int numBytes, |