Str_ucase PROC
Converts a null-terminated string to all upper
case characters.
Call args: ADDR string
Return arg: None
Example:
.data
string BYTE "Hello",0
.code
INVOKE Str_ucase, ADDR string
;string now contains: "HELLO",0
| Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |