Name

toupper — Makes a string uppercase

Synopsis

toupper (void); 
 

Description

Returns string with all alphabetic characters converted to uppercase.

Usage

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