754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
|
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
|
+
-
+
+
+
|
Tcl_Panic("%s called with shared object","TclAppendBytesToByteArray");
}
if (len == TCL_AUTO_LENGTH) {
Tcl_Panic("%s must be called with definite number of bytes to append",
"TclAppendBytesToByteArray");
}
if (len == 0) {
/*
/* Append zero bytes is a no-op. */
* Append zero bytes is a no-op.
*/
return;
}
irPtr = TclFetchIntRep(objPtr, &properByteArrayType);
if (irPtr == NULL) {
irPtr = TclFetchIntRep(objPtr, &tclByteArrayType);
if (irPtr == NULL) {
|