C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
_strlwr, _fstrlwr, _strupr, _fstrupr
 Summary Example                         Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
     The _strlwr function converts any uppercase letters in the given
     null-terminated string to lowercase. The _strupr function converts
     any lowercase letters to uppercase. Other characters are not
     affected.
 
     The _f... forms of these functions are model-independent (large-
     model) forms that use far pointer forms of the <string> arguments
     and return values. These model-independent functions can be called
     from any point in the program.
 
     Return Value
 
     These functions return a pointer to the converted string. There is
     no error return.
                                    -♦-