432
433
434
435
436
437
438
439
440
441
442
443
444
445
|
*/
static void
FreeByteArrayInternalRep(
Tcl_Obj *objPtr) /* Object with internal rep to free. */
{
ckfree((char *) GET_BYTEARRAY(objPtr));
}
/*
*----------------------------------------------------------------------
*
* DupByteArrayInternalRep --
*
|
>
|
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
*/
static void
FreeByteArrayInternalRep(
Tcl_Obj *objPtr) /* Object with internal rep to free. */
{
ckfree((char *) GET_BYTEARRAY(objPtr));
objPtr->typePtr = NULL;
}
/*
*----------------------------------------------------------------------
*
* DupByteArrayInternalRep --
*
|