CFStringAppendCStringHeader: CFString.h

Appends a C string to the character contents of a mutable CFString object.

void CFStringAppendCString (
    CFMutableStringRef theString, 
    const char *cStr, 
    CFStringEncoding encoding
);
theString

A reference to a mutable CFString object to which the characters of the C string cStr are to be appended. If theString is not a mutable CFString object an assertion is raised.

cStr

Pass a pointer to a C string buffer containing the characters you want to append.

encoding

Pass a constant that identifies the encoding of the characters in the C string buffer.


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