CFStringAppendCharactersHeader: 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
);
theString

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.

chars

Pass a pointer to a local buffer of Unicode characters.

numChars

Pass an integer specifying the number of Unicode characters in the buffer chars.


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