CFStringAppendHeader: CFString.h

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

void CFStringAppend (
    CFMutableStringRef theString, 
    CFStringRef appendedString
);
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.


© 1999 Apple Computer, Inc. — (Last Updated 9/15/99)