![]() |
CFStringAppendCString | Header: CFString.h |
Appends a C string to the character contents of a mutable CFString object.
void CFStringAppendCString ( CFMutableStringRef theString, const char *cStr, CFStringEncoding encoding );
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.
Pass a pointer to a C string buffer containing the characters you want to append.
Pass a constant that identifies the encoding of the characters in the C string buffer.