CFStringAppendCString

Header: CFString.h Carbon status: Supported

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

void CFStringAppendCString (
    CFMutableStringRef theString, 
    const char *cStr, 
    CFStringEncoding encoding
);
Parameter descriptions
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.

AVAILABILITY

Supported in Carbon. Available in Carbon 1.0.2 and later.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)