CFStringCapitalizeHeader: CFString.h

Changes the first character represented by a CFString object to uppercase (if it is a lowercase alphabetical character).

void CFStringCapitalize (
    CFMutableStringRef theString, 
    const void *localeTBD
);
theString

Pass a reference to a mutable CFString object whose characters you want capitalized. If theString is not a mutable CFString object an assertion is raised.

localeTBD

Pass an untyped pointer to locale-specific information. Currently this parameter is unimplemented.


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