String Functions
The following table shows the string functions with a description of the purpose of each.
Programming element | PPC | SP | Description |
---|---|---|---|
CharLower | X | X | This function converts a character string or a single character to lowercase. |
CharLowerBuff | X | X | This function converts uppercase characters in a buffer to lowercase characters. |
CharNext | X | X | This function returns a pointer to the next character in a string. |
CharPrev | X | X | This function returns a pointer to the preceding character in a string. |
CharUpper | X | X | This function converts a character string or a single character to uppercase. |
CharUpperBuff | X | X | This function converts lowercase characters in a buffer to uppercase characters. |
IsCharAlpha | X | X | This function determines whether a character is an alphabetic character. |
IsCharAlphaNumeric | X | X | This function determines whether a character is either an alphabetic or a numeric character. |
IsCharLower | X | X | This function determines whether a character is lowercase. |
IsCharUpper | X | X | This function determines whether a character is uppercase. |
LoadString | X | X | This function loads a string resource from the executable file associated with a specified module, copies the string into a buffer, and appends a terminating null character. |
wsprintf | X | X | This function formats and stores a series of characters and values in a buffer. |
wvsprintf | X | X | This function formats and stores a series of characters and values in a buffer. |
See Also
Send Feedback on this topic to the authors