Name

toupper — Makes a string uppercase

Synopsis

toupper (void); 
 

Description

Returns string with all alphabetic characters converted to uppercase. Notice: National characters are left unchanged. Use when working with e.g. options in config files.

Usage

  toupper ("aBcDeF") -> "ABCDEF"
 

  toupper ("abcáäöč") -> "ABCáäöč"