diff options
author | dgp <dgp@users.sourceforge.net> | 2014-01-21 21:32:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-01-21 21:32:53 (GMT) |
commit | 7460f22cc7e783b1dd480c2fbf8ef6fc90a0360c (patch) | |
tree | 16aac5fe7598b853efad37646f8665979dc074b0 /generic/tclInt.h | |
parent | c7ed456462861ff7aaef003c61d8fc526466017d (diff) | |
download | tcl-7460f22cc7e783b1dd480c2fbf8ef6fc90a0360c.zip tcl-7460f22cc7e783b1dd480c2fbf8ef6fc90a0360c.tar.gz tcl-7460f22cc7e783b1dd480c2fbf8ef6fc90a0360c.tar.bz2 |
Backport of bytearray append machinery to support bug fixes in ReadBytes.
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index dc28b97..64d39a0 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2477,6 +2477,8 @@ MODULE_SCOPE char tclEmptyString; *---------------------------------------------------------------- */ +MODULE_SCOPE void TclAppendBytesToByteArray(Tcl_Obj *objPtr, + const unsigned char *bytes, int len); MODULE_SCOPE void TclAdvanceContinuations(int* line, int** next, int loc); MODULE_SCOPE void TclAdvanceLines(int *line, const char *start, const char *end); |