![]() |
CFStringAppend | Header: CFString.h |
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.