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 );
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.
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.
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.
Supported in Carbon. Available in Carbon 1.0.2 and later.
© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)