CFStringAppend

Header: CFString.h Carbon status: Supported

Appends the characters of a CFString object to those of a a mutable CFString object.

void CFStringAppend (
    CFMutableStringRef theString, 
    CFStringRef appendedString
);
Parameter descriptions
theString

A reference to a mutable CFString object to which the characters of appendedString are to be appended. If theString is not a mutable CFString object an assertion is raised.

appendedString

A reference to a CFString object (either mutable or immutable) whose characters you want to append to the mutable CFString object referred to by theString.

DISCUSSION

Appends the Unicode characters stored by a CFString object (whether immutable or mutable) to the characters stored by a mutable CFString object. Reallocates the mutable CFString object's backing store to accomodate the new length.

AVAILABILITY

Supported in Carbon. Available in Carbon 1.0.2 and later.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)