![]() |
CFStringAppendCharacters | Header: CFString.h |
Appends a buffer of Unicode characters to the character contents of a mutable CFString object.
void CFStringAppendCharacters ( CFMutableStringRef theString, const UniChar *chars, CFIndex numChars );
A reference to a mutable CFString object to which the characters of the buffer chars are to be appended. If theString is not a mutable CFString object an assertion is raised.
Pass a pointer to a local buffer of Unicode characters.
Pass an integer specifying the number of Unicode characters in the buffer chars.