diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-09 05:57:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-09 05:57:48 (GMT) |
commit | bc61e591021b6e5b5e4a49fe1f0111b4a475cc27 (patch) | |
tree | 2277837e46f9b03157ad83e443ce3b6c2bd8175e /generic/tclInt.h | |
parent | 9d1a20b757fd40ae5b636621c9c7ce303c15043a (diff) | |
download | tcl-bc61e591021b6e5b5e4a49fe1f0111b4a475cc27.zip tcl-bc61e591021b6e5b5e4a49fe1f0111b4a475cc27.tar.gz tcl-bc61e591021b6e5b5e4a49fe1f0111b4a475cc27.tar.bz2 |
Change the signature of TclParseHex(), such that it can now parse up to 8 hex characters
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index ebc8bef..e4a7782 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -3029,7 +3029,7 @@ MODULE_SCOPE int TclObjUnsetVar2(Tcl_Interp *interp, MODULE_SCOPE int TclParseBackslash(const char *src, int numBytes, int *readPtr, char *dst); MODULE_SCOPE int TclParseHex(const char *src, int numBytes, - Tcl_UniChar *resultPtr); + int *resultPtr); MODULE_SCOPE int TclParseNumber(Tcl_Interp *interp, Tcl_Obj *objPtr, const char *expected, const char *bytes, int numBytes, const char **endPtrPtr, int flags); |