qc.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.
Case Conversion Routines
 Description Example                     Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Include:   <ctype.h>
 
  Syntax:    int toascii( int c );
             int tolower( int c );
             int _tolower( int c );
             int toupper( int c );
             int _toupper( int c );
 
  Returns:   (toascii) the ASCII value of <c>.
             (tolower) the lowercase equivalent of <c> only
                       if <c> is an uppercase letter.
             (_tolower) the lowercase equivalent of <c>.
             (toupper) the uppercase equivalent of <c> only
                       if <c> is a lowercase letter.
             (_toupper) the uppercase equivalent of <c>.
 
  See also:  \ais...
                                    -♦-